1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/code/backend/nest_backend/database/base.py

8 lines
146 B
Python
Raw Normal View History

"""
This module creates the declarative base
"""
2021-04-19 14:14:51 +00:00
import flask_sqlalchemy
from sqlalchemy.orm import backref
2021-04-19 14:14:51 +00:00
Base = flask_sqlalchemy.SQLAlchemy()