mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +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],
 | 
						|
    };
 | 
						|
};
 |