mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-07 18:05:42 +00:00
15 lines
186 B
JavaScript
15 lines
186 B
JavaScript
/**
|
|
* Developer Center
|
|
*/
|
|
|
|
require('./tags');
|
|
const boot = require('../boot.js');
|
|
const route = require('./router.ls');
|
|
|
|
/**
|
|
* Boot
|
|
*/
|
|
boot(me => {
|
|
// Start routing
|
|
route(me);
|
|
});
|