Newer
Older
import { Module } from '@nestjs/common';
import { TelegramService } from './telegram.service';
@Module({
providers: [TelegramService],
})
export class TelegramModule {}
import { Module } from '@nestjs/common';
import { TelegramService } from './telegram.service';
@Module({
providers: [TelegramService],
})
export class TelegramModule {}