sharkey/src/web/app/dev/script.js

16 lines
195 B
JavaScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
/**
* Developer Center
*/
2017-02-02 18:11:58 +09:00
require('./tags/index.ls');
2016-12-31 20:26:22 +09:00
const boot = require('../boot.js');
2016-12-29 07:49:51 +09:00
const route = require('./router.ls');
/**
* Boot
*/
boot(me => {
// Start routing
route(me);
});