updated name system

This commit is contained in:
Warunee Tamkoo 2024-09-05 16:39:17 +07:00
parent 15f351f6e7
commit 400b9c0b28
2 changed files with 3 additions and 3 deletions

View file

@ -2,10 +2,10 @@ import { Controller, Get, Route, Security, Tags } from "tsoa";
@Route("/hello")
@Tags("Test")
@Security("bearerAuth")
// @Security("bearerAuth")
export class AppController extends Controller {
@Get()
public async GET() {
return { message: "Hello Development" };
return { message: "Hello Probation System" };
}
}