Separating Enums, Schemas and Models in account

This commit is contained in:
2025-02-04 22:59:59 +01:00
parent a4be703713
commit f26bd9846a
7 changed files with 144 additions and 118 deletions

View File

@@ -4,7 +4,8 @@ from uuid import UUID, uuid4
from sqlmodel import Field, SQLModel, select, Relationship
from pydantic import Field as PydField
from account.models import Account, AccountRead
from account.models import Account
from account.schemas import AccountRead
from payee.models import Payee, PayeeRead