diff options
Diffstat (limited to 'app/auth/__init__.py')
| -rw-r--r-- | app/auth/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/auth/__init__.py b/app/auth/__init__.py new file mode 100644 index 0000000..c938693 --- /dev/null +++ b/app/auth/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- + +from flask import Blueprint + +bp = Blueprint('auth', __name__) + +from app.auth import routes |
