mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 21:06:27 +01:00
19 lines
240 B
JavaScript
19 lines
240 B
JavaScript
/**
|
|
* Developer Center
|
|
*/
|
|
|
|
// Style
|
|
//import './style.styl';
|
|
require('./style.styl');
|
|
|
|
require('./tags');
|
|
const boot = require('../boot');
|
|
const route = require('./router');
|
|
|
|
/**
|
|
* Boot
|
|
*/
|
|
boot(me => {
|
|
// Start routing
|
|
route(me);
|
|
});
|