strip api prefix middleware
All checks were successful
Deploy Backend / deploy (push) Successful in 1m40s

This commit is contained in:
Lee
2024-10-04 23:14:26 +01:00
parent 338f955c78
commit e5bfa8afa0
5 changed files with 15 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import { AppService } from "../service/app.service";
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
@Get("/")
getHello(): string {
return this.appService.getHello();
}