svr-imp/src/main.ts

9 lines
208 B
TypeScript
Raw Normal View History

2017-05-14 20:58:46 +00:00
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
2017-02-25 14:13:01 +00:00
2017-09-13 00:33:12 +00:00
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
2017-09-13 00:33:12 +00:00
}
bootstrap();