dekoa
Version:
Decorators for Koa
21 lines (17 loc) • 373 B
JavaScript
import Status from 'http-status-codes'
import { resource, post, del } from 'route'
export default class Account {
async login (ctx) {
ctx.status = Status.RESET_CONTENT
}
async logout (ctx) {
ctx.status = Status.RESET_CONTENT
}
async remove (ctx) {
ctx.status = Status.NO_CONTENT
}
}