mic-bot/cfg/bot.ts
2024-10-19 12:00:35 +02:00

7 lines
144 B
TypeScript

export enum BotMode{ setup, normal }
export type BotConfig = {
mode: BotMode,
bot_token: string,
chat_id: number,
admin_ids: number[],
}