Working on CLI Implementation

This commit is contained in:
Lucas Mathews
2024-06-20 22:25:26 +02:00
parent 15c0d62523
commit a8f4a061ca
13 changed files with 333 additions and 17 deletions

6
cli/class_base.py Normal file
View File

@@ -0,0 +1,6 @@
# Lucas Mathews - Fontys Student ID: 5023572
# Banking System Base Class
from sqlalchemy.orm import declarative_base
Base = declarative_base()