UNPKG

kcola

Version:

一个基于koa2,小而美的RESTful API+MVC的web开发框架!

8 lines (6 loc) 236 B
const Communicator = require('./communicator'); module.exports = (name, handlerPath) => { const communicator = new Communicator(name, handlerPath); console.log('[LPC] initialization:', communicator.name); return communicator; };