11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
|
|
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" };
|
||
|
|
}
|
||
|
|
}
|