mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
7 lines
123 B
JavaScript
7 lines
123 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = () => ({
|
||
|
store: () => Promise.resolve(),
|
||
|
getEvents: () => Promise.resolve([]),
|
||
|
});
|