diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-12-05 13:21:52 +0100 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:20:13 +0100 |
commit | 29051c70c53999fa9beec83fbd09ec17fd244539 (patch) | |
tree | bc415bcd242f1d4add1a598a8f0d18070a8d2467 /src/index.js | |
parent | adf54e211279a4efd6231b3396fbb28c7267258c (diff) |
FUNCT Added wired connection information
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 10 |
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(); |