kites icon indicating copy to clipboard operation
kites copied to clipboard

Add BaseApiController

Open vunb opened this issue 5 years ago • 0 comments

  • Allow a new controller definition extends from BaseApiController

Example:

@Controller("/")
class ExampleController extends BaseApiController {
    @Get("/")
    public async info() {
        return this.ok("foo");
    }

vunb avatar Oct 05 '19 06:10 vunb