6 lines
144 B
Python
6 lines
144 B
Python
# Lucas Mathews - Fontys Student ID: 5023572
|
|
# Banking System Base Class
|
|
|
|
from sqlalchemy.orm import declarative_base
|
|
|
|
Base = declarative_base() |