Compare commits

..

No commits in common. "e1aca07cfc55cb3db8302586dc5b99aa301ef4d9" and "b375b8bcaf5e6532775ab242fa9910ef9dca0806" have entirely different histories.

2 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,9 @@
import flask_app
from os.path import realpath, dirname
import sys
import_dir = dirname(f"{realpath(__file__)}")
sys.path.append(import_dir)
app = flask_app.App()
app.register_blueprints()

View File

@ -0,0 +1 @@
from . import root