mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-03-01 17:00:48 +01:00
11 lines
216 B
Python
11 lines
216 B
Python
"""Prometheus metrics integration for FastAPI applications."""
|
|
|
|
from .handler import init_metrics
|
|
from .registry import Metric, MetricsRegistry
|
|
|
|
__all__ = [
|
|
"Metric",
|
|
"MetricsRegistry",
|
|
"init_metrics",
|
|
]
|