aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/index.js b/src/index.js
index 879e10e..0c34be4 100644
--- a/src/index.js
+++ b/src/index.js
@@ -14,16 +14,22 @@
* limitations under the License.
*/
/* JS */
-import { init } from './js/app';
+import * as app from './js/app';
import { api } from 'agl-js-api';
import * as bluetooth from './js/bluetooth';
import * as wifi from './js/wifi';
+import * as wired from './js/wired';
/* CSS */
import './styles/app.scss';
window.bluetooth = bluetooth;
window.wifi = wifi;
+window.wired = wired;
+
api.init();
-init();
+app.init();
+bluetooth.init();
+wifi.init();
+wired.init();