dash-stack/dash/auth/__init__.py
kelepirci 8b95f4c054 Basic auth system implimented
Basic user authantication has implimented with Flask-Login and
pass word hasing with werkzeg.
2016-07-10 19:08:31 +03:00

5 lines
84 B
Python

from flask import Blueprint
auth = Blueprint('auth', __name__)
from . import views