This commit is contained in:
2022-03-29 11:27:49 -06:00
parent 012ea2f1fc
commit bb39ea0daf
16 changed files with 15809 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
imports: [],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}