mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-23 10:55:31 -06: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
|
|
);
|
|
}
|