2021-01-03 17:32:58 +03:00
|
|
|
import 'dotenv/config';
|
2020-12-26 16:23:54 +03:00
|
|
|
import { NestFactory } from '@nestjs/core';
|
|
|
|
import { AppModule } from './app.module';
|
|
|
|
|
|
|
|
async function bootstrap() {
|
|
|
|
await NestFactory.createApplicationContext(AppModule);
|
|
|
|
}
|
|
|
|
bootstrap();
|