Initial commit
This commit is contained in:
11
apps/backend/src/app.module.ts
Normal file
11
apps/backend/src/app.module.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { AppController } from './app.controller';
|
||||
import { AppService } from './app.service';
|
||||
import { HelloController } from './hello/hello.controller';
|
||||
|
||||
@Module({
|
||||
imports: [],
|
||||
controllers: [AppController, HelloController],
|
||||
providers: [AppService],
|
||||
})
|
||||
export class AppModule {}
|
||||
Reference in New Issue
Block a user