diff options
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js index 7b6f84c..eb7b4ac 100644 --- a/src/index.js +++ b/src/index.js @@ -16,8 +16,12 @@ /* CSS */ import './styles/app.scss'; -import { init } from './js/main'; -import { start } from './js/apps'; -window.start = start; -init();
\ No newline at end of file +import { api } from 'agl-js-api'; + +import * as app from './js/app'; +import * as apps from './js/apps'; + +window.apps = apps; +api.init(); +app.init();
\ No newline at end of file |