model OrgGroup

This commit is contained in:
AdisakKanthawilang 2024-01-24 16:08:34 +07:00
parent 3c64d6b790
commit 89e68e5970
9 changed files with 655 additions and 3 deletions

View file

@ -0,0 +1,11 @@
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" };
}
}