misskey-awawa/src/web/app/ch/script.ts

19 lines
193 B
TypeScript
Raw Normal View History

2017-10-31 18:17:14 +00:00
/**
* Channels
*/
// Style
import './style.styl';
require('./tags');
import init from '../init';
import route from './router';
/**
* init
*/
2017-11-15 18:06:52 +00:00
init(() => {
2017-10-31 18:17:14 +00:00
// Start routing
2017-11-15 18:06:52 +00:00
route();
2017-10-31 18:17:14 +00:00
});