mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-15 19:21:08 +00:00
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
export function hasTelegramConfiguredState(params: { env?: NodeJS.ProcessEnv }): boolean {
|
|
return (
|
|
typeof params.env?.TELEGRAM_BOT_TOKEN === "string" &&
|
|
params.env.TELEGRAM_BOT_TOKEN.trim().length > 0
|
|
);
|
|
}
|