This commit was merged in pull request #1.
This commit is contained in:
Azeez Muibi
2025-04-15 11:24:59 +01:00
parent 270bebca56
commit 75f9ddea55
5 changed files with 129 additions and 18 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
from .customer import Customer
from .account import Account
from .loan import Loan
from .transaction import Transaction
__all__ = ['Customer', 'Loan', 'Transaction']
__all__ = ['Customer', 'Account', 'Loan', 'Transaction']