fist commit

This commit is contained in:
AdisakKanthawilang 2024-01-24 11:39:00 +07:00
parent 44ac172e54
commit 3c64d6b790
24 changed files with 11978 additions and 0 deletions

View file

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