mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
20 lines
352 B
TypeScript
20 lines
352 B
TypeScript
|
import Alerts from './Alerts';
|
||
|
import Config from './Config';
|
||
|
import Flags from './Flags';
|
||
|
import Rules from './Rules';
|
||
|
import Services from './Services';
|
||
|
import Status from './Status';
|
||
|
import Targets from './Targets';
|
||
|
import PanelList from './PanelList';
|
||
|
|
||
|
export {
|
||
|
Alerts,
|
||
|
Config,
|
||
|
Flags,
|
||
|
Rules,
|
||
|
Services,
|
||
|
Status,
|
||
|
Targets,
|
||
|
PanelList,
|
||
|
}
|