aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/app.js
blob: ed7b02813e8d73b7598b93682c3b29f752706b6b (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;