mic-bot/bot/normal_mode/init.ts
2024-10-19 12:47:33 +02:00

10 lines
345 B
TypeScript

import { Bot } from "https://deno.land/x/grammy/mod.ts";
import { Kysely } from "npm:kysely";
import { Ctx } from "../ctx.ts";
import { CompiledConfig } from "../../cfg/config.ts";
import { Database } from "../../repo/exports.ts";
export const init = (bot: Bot<Ctx>, db: Kysely<Database>, cfg: CompiledConfig) => {
const { botCfg } = cfg
}