aboutsummaryrefslogtreecommitdiff
path: root/src/app.module.ts
blob: 86628031ca2a10fe172fe824f69d1720c44b43ce (plain)
1
2
3
4
5
6
7
8
9
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 {}