mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
13 lines
207 B
JavaScript
13 lines
207 B
JavaScript
module.exports = {
|
|
_tmpStore: {},
|
|
|
|
send: (serviceName, payload) => {
|
|
this._tmpStore = { serviceName, payload };
|
|
return [Promise.resolve()];
|
|
},
|
|
|
|
get: () => {
|
|
return this._tmpStore;
|
|
}
|
|
};
|