diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app.py b/app.py index aa502c3..dbc1ffb 100755 --- a/app.py +++ b/app.py @@ -1,6 +1,6 @@ from flask import Flask -from threads import threads -from cache import cache +from .threads import threads +from .cache import cache app = Flask(__name__) cache.init_app(app, config={'CACHE_TYPE': 'SimpleCache'})