blob: f07c210b046b92dde23f1c243746c94c2c3b952b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { init as init_apps } from './apps';
import { init as init_weather } from './weather';
import { init as init_network } from './network';
import { init as init_time } from './time';
export function init() {
init_apps();
init_weather();
init_network();
init_time();
}
|