Files
FirstCore/app/models/__init__.py
T
Azeez Muibi 89fb91e874 update
2025-04-14 11:30:28 +01:00

5 lines
137 B
Python

from .customer import Customer
from .loan import Loan
from .transaction import Transaction
__all__ = ['Customer', 'Loan', 'Transaction']