aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/app.js
blob: f95852d0ab5c6391e11dc4c62359bc84e7516c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { init as init_bluetooth } from './bluetooth';
import { init as init_wifi } from './wifi';

import { api } from 'agl-js-api';

export function init() {
    api.init();
    init_bluetooth();
    init_wifi();
}

window.api = api;