Skip to content
Snippets Groups Projects
telegram.module.ts 170 B
Newer Older
Pascal Kosak's avatar
Pascal Kosak committed
import {Module} from "@nestjs/common";
import {TelegramService} from "./telegram.service";

@Module({
    providers: [TelegramService],
})
export class TelegramModule {}