| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 1x 1x | 'use strict';
const Lark = require('../..');
class MainController extends Lark.Controller {
async main(ctx) {
ctx.body = 'Welcome to the default page';
}
}
module.exports = MainController;
|