first commit

This commit is contained in:
Ivan Li
2021-01-31 11:15:21 +08:00
commit a77e22edd0
16 changed files with 8233 additions and 0 deletions

8
src/main.ts Normal file
View File

@ -0,0 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(7122);
}
bootstrap();