blob: 407f4e84c0f3037ad722467379bd5c3a29d95a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* Developer Center
*/
require('./tags.ls');
const boot = require('../boot.ls');
const route = require('./router.ls');
/**
* Boot
*/
boot(me => {
// Start routing
route(me);
});
|