update(@nestjs) fit style guide

This commit is contained in:
Kamil Myśliwiec
2018-01-02 16:14:44 +01:00
parent cd6e046a3a
commit fbf61e5d76
6 changed files with 5 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { ApplicationModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(ApplicationModule);
await app.listen(3000);
}
bootstrap();