nestjs-telegraf/sample/main.ts
2020-12-26 16:23:54 +03:00

8 lines
188 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
await NestFactory.createApplicationContext(AppModule);
}
bootstrap();