9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
export default class IndexRoutes {
|
|
constructor(opts = {}) {
|
|
this.indexBody = ''
|
|
}
|
|
|
|
async sendIndex(ctx) {
|
|
ctx.body = this.indexBody
|
|
}
|
|
}
|