mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-16 11:41:08 +00:00
7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
export function hasDiscordConfiguredState(params: { env?: NodeJS.ProcessEnv }): boolean {
|
|
return (
|
|
typeof params.env?.DISCORD_BOT_TOKEN === "string" &&
|
|
params.env.DISCORD_BOT_TOKEN.trim().length > 0
|
|
);
|
|
}
|