impl simple backend
Some checks failed
Deploy Backend / deploy (push) Failing after 29s

This commit is contained in:
Lee
2024-10-04 22:21:37 +01:00
parent cd7cc29afd
commit e105a76bf2
18 changed files with 2347 additions and 28 deletions

View File

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