diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-10-23 09:44:29 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:20:13 +0100 |
commit | 33702aea7ce42c8240e4bed7b424cc8ac4a33826 (patch) | |
tree | 6bba05249b6830fa6cdaea1bbd88971e8e027634 /src/js/app.js | |
parent | 00b8929291665238cbcd88676fe65f67900be1c3 (diff) |
FUNCT Implement bluetooth screen
Diffstat (limited to 'src/js/app.js')
-rw-r--r-- | src/js/app.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/js/app.js b/src/js/app.js new file mode 100644 index 0000000..8e80039 --- /dev/null +++ b/src/js/app.js @@ -0,0 +1,8 @@ +import { init as init_bluetooth } from './bluetooth'; + +import { api } from 'agl-js-api'; + +export function init() { + api.init(); + init_bluetooth(); +}
\ No newline at end of file |