feat: add logger module (#37)

This commit is contained in:
d3vyce
2026-02-06 13:22:40 +01:00
committed by GitHub
parent f68793fbdb
commit 4404fb3df9
5 changed files with 205 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
import typer
from ..logger import configure_logging
from .config import get_custom_cli
from .pyproject import load_pyproject
@@ -27,4 +28,5 @@ if _config.get("fixtures") and _config.get("db_context"):
@cli.callback()
def main(ctx: typer.Context) -> None:
"""FastAPI utilities CLI."""
configure_logging()
ctx.ensure_object(dict)