switch to new Rotoger class

This commit is contained in:
grillazz
2025-10-14 11:31:08 +02:00
parent 29c85275b2
commit 331df3f2ff
12 changed files with 27 additions and 25 deletions

View File

@@ -2,12 +2,12 @@ from typing import Any
from asyncpg import UniqueViolationError
from fastapi import HTTPException, status
from rotoger import AppStructLogger
from rotoger import Rotoger
from sqlalchemy.exc import IntegrityError, SQLAlchemyError
from sqlalchemy.ext.asyncio import AsyncSession
from sqlalchemy.orm import DeclarativeBase, declared_attr
logger = AppStructLogger().get_logger()
logger = Rotoger().get_logger()
class Base(DeclarativeBase):