mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2025-01-01 10:18:11 +03:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import 'dotenv/config';
|
|
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
|
|
async function bootstrap() {
|
|
await NestFactory.createApplicationContext(AppModule);
|
|
}
|
|
bootstrap();
|