This commit is contained in:
AdisakKanthawilang 2024-01-24 16:19:23 +07:00
parent b45e27475b
commit 94cccade56

View file

@ -1,11 +0,0 @@
import { Controller, Get, Route, Security, Tags } from "tsoa";
import { database } from "../database/data-source";
@Route("/hello")
@Security("bearerAuth")
export class AppController extends Controller {
@Get()
public async GET() {
return { message: "Hello World 1" };
}
}