Removed initial module files

This commit is contained in:
2023-11-18 01:59:26 +03:00
parent 33c3a8fbf0
commit 841e9955bf
4 changed files with 8 additions and 47 deletions

View File

@@ -1,12 +0,0 @@
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
}