Files
dibbler/dibbler/models/__init__.py
h7x4 0a2fc799dd
All checks were successful
Run tests / run-tests (push) Successful in 1m37s
fixup! WIP
2025-12-09 04:25:05 +09:00

14 lines
253 B
Python

__all__ = [
"Base",
"Product",
"Transaction",
"TransactionType",
"User",
]
from .Base import Base
from .Product import Product
from .Transaction import Transaction
from .TransactionType import TransactionType
from .User import User