refactor: organize file

This commit is contained in:
Methapon Metanipat 2024-09-05 09:21:39 +07:00
parent e141ea330a
commit 2af4e750b0
19 changed files with 0 additions and 0 deletions

View file

@ -1,11 +0,0 @@
import { Controller, Get, Route, Tags } from "tsoa";
import swaggerDocument from "../swagger.json";
@Route("api")
@Tags("OpenAPI")
export class APIController extends Controller {
@Get("openapi")
public getOpenAPI() {
return swaggerDocument;
}
}