mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
95388996b9
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: () => {}
|
|
});
|