Skip to content
Snippets Groups Projects
telegram.module.ts 170 B
Newer Older
  • Learn to ignore specific revisions
  • Pascal Kosak's avatar
    Pascal Kosak committed
    import {Module} from "@nestjs/common";
    import {TelegramService} from "./telegram.service";
    
    @Module({
        providers: [TelegramService],
    })
    export class TelegramModule {}