mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 20:16:44 -06:00
16 lines
189 B
JavaScript
16 lines
189 B
JavaScript
|
/**
|
||
|
* Developer Center
|
||
|
*/
|
||
|
|
||
|
require('./tags.ls');
|
||
|
const boot = require('../boot.ls');
|
||
|
const route = require('./router.ls');
|
||
|
|
||
|
/**
|
||
|
* Boot
|
||
|
*/
|
||
|
boot(me => {
|
||
|
// Start routing
|
||
|
route(me);
|
||
|
});
|