0
0
mirror of https://github.com/Maks1mS/nestjs-telegraf.git synced 2025-01-22 11:51:07 +03:00
nestjs-telegraf/lib/utils/get-bot-token.util.ts

6 lines
192 B
TypeScript
Raw Normal View History

2021-01-02 01:27:01 +03:00
import { DEFAULT_BOT_NAME } from '../telegraf.constants';
2021-01-03 13:24:07 +03:00
export function getBotToken(name?: string): string {
return name && name !== DEFAULT_BOT_NAME ? `${name}Bot` : DEFAULT_BOT_NAME;
2021-01-02 01:27:01 +03:00
}