mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-14 00:19:16 +01:00
e55378e1c4
Impelements: - http://unleash.host.com/api/client/seen-toggles - http://unleash.host.com/api/metrics/feature-toggles - http://localhost:4242/api/client/applications - http://localhost:4242/api/client/applications/:appName
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
'use strict';
|
|
|
|
module.exports = () => ({
|
|
getMetricsLastHour: () => Promise.resolve([]),
|
|
insert: () => Promise.resolve(),
|
|
on: () => {}
|
|
});
|