5 lines
137 B
Python
5 lines
137 B
Python
from .customer import Customer
|
|
from .loan import Loan
|
|
from .transaction import Transaction
|
|
|
|
__all__ = ['Customer', 'Loan', 'Transaction'] |