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

16 lines
195 B
JavaScript
Raw Normal View History

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