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

@@ -1,15 +1,15 @@
"""Fixture system with dependency management and context support."""
import logging
from collections.abc import Callable, Sequence
from dataclasses import dataclass, field
from typing import Any, cast
from sqlalchemy.orm import DeclarativeBase
from ..logger import get_logger
from .enum import Context
logger = logging.getLogger(__name__)
logger = get_logger()
@dataclass