mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-25 23:44:39 +03:00
699 B
699 B
id | title | sidebar_label | slug |
---|---|---|---|
installation | Installation | Installation | / |
$ npm i @maks1ms/nestjs-telegraf telegraf
Once the installation process is complete, we can import the TelegrafModule
into the root AppModule
.
import { Module } from '@nestjs/common';
import { TelegrafModule } from '@maks1ms/nestjs-telegraf';
@Module({
imports: [
TelegrafModule.forRoot({
token: 'TELEGRAM_BOT_TOKEN',
})
],
})
export class AppModule {}
The forRoot()
method accepts the same configuration object as Telegraf class constructor from the Telegraf package, as described here.