mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
|
var Promise = require('bluebird');
|
||
|
|
||
|
function storeEvent(event) {
|
||
|
console.log('using eventDbMock to store: ', event);
|
||
|
return new Promise(function (resolve) {
|
||
|
resolve();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
module.exports = {
|
||
|
store: storeEvent
|
||
|
};
|