@sundial/koa_rest
v0.0.3
Published
```ts @Controller("/api") class HelloController { @Get("/hello") async hello(ctx) { ctx.body = "hello world!"; } } ```
Downloads
3
Readme
usage
@Controller("/api")
class HelloController {
@Get("/hello")
async hello(ctx) {
ctx.body = "hello world!";
}
}