blob: ddb8a6163c9c2ff20e7489a128a48bfe84ec6053 [file] [log] [blame]
import {Module} from '@nestjs/common';
import {AppController} from './app.controller';
@Module({
imports: [],
controllers: [AppController],
providers: [],
})
export class AppModule {}