0
0
mirror of https://github.com/Maks1mS/nestjs-telegraf.git synced 2025-04-01 14:13:43 +03:00
nestjs-telegraf/lib/utils/get-bot-token.util.ts
2021-01-02 01:27:01 +03:00

8 lines
198 B
TypeScript

import { DEFAULT_BOT_NAME } from '../telegraf.constants';
export function getBotToken(name?: string) {
return name && name !== DEFAULT_BOT_NAME
? `${name}_BOT_NAME`
: DEFAULT_BOT_NAME;
}