mm
2 years ago
1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
from flask import Flask |
|||
from flask_sqlalchemy import SQLAlchemy |
|||
|
|||
app = Flask(__name__) |
|||
app.config.from_pyfile('config.py') |
|||
|
|||
db = SQLAlchemy(app) |
|||
|
|||
from app import routes |
Loading…
Reference in new issue