1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-28 13:38:08 +09:00
hotomoe/src/web/app/dev/script.ts
2017-11-16 03:06:52 +09:00

19 lines
201 B
TypeScript

/**
* Developer Center
*/
// Style
import './style.styl';
require('./tags');
import init from '../init';
import route from './router';
/**
* init
*/
init(() => {
// Start routing
route();
});