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;