Skip to content

Commit

Permalink
12312312321
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Shankin committed Nov 28, 2022
1 parent 50177f2 commit e9cd3d1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/bot/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
personalAccountMenu,
paymentsMenu,
countOutputMenu,
subscriptionMenu
subscriptionMenu,
} from "./keyboards/index.ts";
import { settingsHeading } from "./headers.ts";
import { welcomeFeature } from "./features/index.ts";
Expand All @@ -24,7 +24,9 @@ import { setupSession } from "./middlewares/index.ts";

import { router } from "./router/index.ts";

export const bot = new Bot<Context>(Deno.env.get("BOT_TOKEN"));
export const bot = new Bot<Context>(
"5688898772:AAHP__a-2XsXT-lbq9TgxzEq3pcAERpG6Rw"
);

// Middlewares

Expand All @@ -39,7 +41,7 @@ bot.use(paymentsMenu);
bot.use(settingsMenu);
bot.use(personalAccountMenu);
bot.use(countOutputMenu);
marketsMenu.register(subscriptionMenu)
marketsMenu.register(subscriptionMenu);
personalAccountMenu.register(paymentsMenu);
settingsMenu.register(countOutputMenu);
//handlers
Expand Down

0 comments on commit e9cd3d1

Please sign in to comment.