hrms-api-org/src/controllers/MyController.ts
2024-10-18 11:33:04 +07:00

11 lines
246 B
TypeScript

import { Controller, Get, Route, Security, Tags } from "tsoa";
@Route("/hello")
@Tags("Test")
@Security("bearerAuth")
export class AppController extends Controller {
@Get()
public async GET() {
return { message: "Hello World 1" };
}
}