Fix circular imports issue by separating SQLAlchemy db instance into database.py

This commit is contained in:
Xevion
2022-03-28 17:57:52 -05:00
parent 3ea945b99f
commit 2d014628e4
7 changed files with 9 additions and 6 deletions

3
database.py Normal file
View File

@@ -0,0 +1,3 @@
from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy()