Files
CoPay/backend/app/models/__init__.py
T
2024-11-17 02:31:42 +03:00

14 lines
297 B
Python

__all__ = ['SQLModel']
# Initialize all models for SQLModel's __init_subclass__ to trigger
from sqlmodel import SQLModel
from .base import *
from .event import *
from .item import *
from .ofd import *
from .telegram import *
from .tokens import *
from .transactions import *
from .user import *