test / src /app.module.ts
pranay143342's picture
Training in progress, epoch 1
36c9740 verified
raw
history blame
249 Bytes
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
imports: [],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}