nopaque/web/app/auth/__init__.py

6 lines
85 B
Python
Raw Normal View History

from flask import Blueprint
2019-11-12 12:36:22 +00:00
auth = Blueprint('auth', __name__)
from . import views