Implemented backend for #4
This commit is contained in:
@ -12,6 +12,7 @@ import flask
|
||||
import db
|
||||
|
||||
from blueprints.projects import projectsBP
|
||||
from blueprints.booper import booperBP
|
||||
from blueprints.static import staticBP
|
||||
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
@ -21,6 +22,7 @@ dotenv.load_dotenv()
|
||||
app = flask.Flask(__name__)
|
||||
db.init()
|
||||
app.register_blueprint(projectsBP)
|
||||
app.register_blueprint(booperBP)
|
||||
app.register_blueprint(staticBP)
|
||||
|
||||
def onClose():
|
||||
|
||||
Reference in New Issue
Block a user