11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import { Controller, Get, Route, Security, Tags } from "tsoa";
|
|
|
|
@Route("/hello")
|
|
@Tags("Test")
|
|
@Security("bearerAuth")
|
|
export class AppController extends Controller {
|
|
@Get()
|
|
public async GET() {
|
|
return { message: "Hello Development" };
|
|
}
|
|
}
|