Added nestjs microservice

This commit is contained in:
Alex Tran
2022-03-25 15:26:55 -05:00
parent 5c9d3cd08b
commit fe693db84f
16 changed files with 6821 additions and 1 deletions

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 {}