UNPKG

mm_os

Version:

这是超级美眉服务端框架,用于快速构建应用程序。

19 lines (16 loc) 363 B
const Base = require("../../../lib/base.js"); /** * 控制器 */ class Controller extends Base { constructor() { super(); // 检索的文件路径 this.path = "./app/controller".fullname(); // 文件拓展名 this.extension = "controller.json"; // 文件存放目录 this.dir = "./app"; } } module.exports = new Controller()