mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-03-02 01:10:47 +01:00
feat: add a metrics module (#67)
This commit is contained in:
10
src/fastapi_toolsets/metrics/__init__.py
Normal file
10
src/fastapi_toolsets/metrics/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""Prometheus metrics integration for FastAPI applications."""
|
||||
|
||||
from .handler import init_metrics
|
||||
from .registry import Metric, MetricsRegistry
|
||||
|
||||
__all__ = [
|
||||
"Metric",
|
||||
"MetricsRegistry",
|
||||
"init_metrics",
|
||||
]
|
||||
Reference in New Issue
Block a user