Files
nest/sample/14-mongoose-base/src/main.ts
John Biundo d5cd396d98 more files
2019-09-16 14:51:17 -07:00

9 lines
208 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();