mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
15 lines
317 B
JavaScript
15 lines
317 B
JavaScript
'use strict';
|
|
|
|
module.exports = () => {
|
|
const apps = [];
|
|
|
|
return {
|
|
upsert: app => {
|
|
apps.push(app);
|
|
return Promise.resolve();
|
|
},
|
|
getApplications: () => Promise.resolve(apps),
|
|
getApplication: appName => apps.filter(a => a.name === appName)[0],
|
|
};
|
|
};
|