diff options
| author | Mitsuo Tokumori <[email protected]> | 2023-10-27 19:58:19 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2023-10-27 19:58:19 -0500 |
| commit | 4dd7f82f86f32f18a1c881749848f0c5333a40ce (patch) | |
| tree | dc1b043f3ec7d2bf76e837f3e89caf6dec5851c1 | |
| parent | f59b3ba871f1086beb147c2de46f0cd60ce070c2 (diff) | |
| download | ustayml-4dd7f82f86f32f18a1c881749848f0c5333a40ce.tar.gz ustayml-4dd7f82f86f32f18a1c881749848f0c5333a40ce.tar.bz2 ustayml-4dd7f82f86f32f18a1c881749848f0c5333a40ce.zip | |
Move views to the views/ directory
| -rw-r--r-- | flaskr/__init__.py | 2 | ||||
| -rw-r--r-- | flaskr/views/auth.py (renamed from flaskr/auth.py) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/flaskr/__init__.py b/flaskr/__init__.py index dffc858..0366365 100644 --- a/flaskr/__init__.py +++ b/flaskr/__init__.py @@ -32,7 +32,7 @@ def create_app(test_config=None): from . import db db.init_app(app) - from . import auth + from .views import auth app.register_blueprint(auth.bp) return app
\ No newline at end of file diff --git a/flaskr/auth.py b/flaskr/views/auth.py index 3689eba..3689eba 100644 --- a/flaskr/auth.py +++ b/flaskr/views/auth.py |
