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