An error occurred while loading the file. Please try again.
-
tushar5526 authored243027d5
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { DbModule } from './db/db.module';
@Module({
imports: [DbModule],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}