diff --git a/ennstatus/root/__init__.py b/ennstatus/root/__init__.py new file mode 100644 diff --git a/ennstatus/constants.py b/ennstatus/root/constants.py rename from ennstatus/constants.py rename to ennstatus/root/constants.py diff --git a/ennstatus/forms.py b/ennstatus/root/forms.py rename from ennstatus/forms.py rename to ennstatus/root/forms.py diff --git a/ennstatus/views.py b/ennstatus/root/views.py rename from ennstatus/views.py rename to ennstatus/root/views.py --- a/ennstatus/views.py +++ b/ennstatus/root/views.py @@ -1,8 +1,8 @@ from flask import (Blueprint, render_template, current_app, request, redirect, url_for) -from ennstatus.forms import BPMForm -from ennstatus.constants import BPM_ADDRESSES +from ennstatus.root.forms import BPMForm +from ennstatus.root.constants import BPM_ADDRESSES root_page = Blueprint('root', __name__)