aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/app.js
blob: 8e80039e26c49aa32bc04f3321904af165c69ace (plain)
1
2
3
4
5
6
7
8
import { init as init_bluetooth } from './bluetooth';

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

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