1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-20 17:48:13 +09:00
hotomoe/src/web/app/mobile/script.js
2017-02-02 18:11:58 +09:00

20 lines
265 B
JavaScript

/**
* Mobile Client
*/
require('./tags/index.ls');
const boot = require('../boot.js');
const mixins = require('./mixins.ls');
const route = require('./router.ls');
/**
* Boot
*/
boot(me => {
// Register mixins
mixins(me);
// Start routing
route(me);
});