mic-bot/cfg/bot.ts

7 lines
144 B
TypeScript
Raw Normal View History

2024-10-19 10:00:35 +00:00
export enum BotMode{ setup, normal }
export type BotConfig = {
mode: BotMode,
bot_token: string,
chat_id: number,
admin_ids: number[],
}