infogare-api.js
Advanced tools
Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "infogare-api.js", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"main": "src/core/index.js", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -7,2 +7,11 @@ const InfoGareApp = require('../modules/App'); | ||
// Initialize the app globally | ||
initializeApp = (appId) => { | ||
return new InfoGareApp(appId); | ||
} | ||
getApp = () => { | ||
return InfoGareApp; | ||
} | ||
module.exports = { | ||
@@ -14,3 +23,5 @@ InfoGareApp, | ||
UserNotFoundException, | ||
StationNotFoundException | ||
StationNotFoundException, | ||
initializeApp, | ||
getApp | ||
}; |
19309
629