okam-build
Version:
The build tool for Okam develop framework
20 lines (14 loc) • 351 B
JavaScript
/**
* @file Dev server based on express
* @author sparklewhy@gmail.com
*/
;
const ServerBase = require('./ServerBase');
class ExpressServer extends ServerBase {
constructor(options) {
super(options);
let express = this.serverType;
this.app = express();
}
}
module.exports = exports = ExpressServer;