summaryrefslogtreecommitdiff
path: root/src/web/app/ch/script.ts
blob: 760d405c525fb66f0588246e3583d4137ebb428d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * Channels
 */

// Style
import './style.styl';

require('./tags');
import init from '../init';
import route from './router';

/**
 * init
 */
init(me => {
	// Start routing
	route(me);
});