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