Blame view

app/auth/__init__.py 202 Bytes
fcac7c5d   hitier   New auth blueprin...
1
2
3
4
5
6
7
8
from flask import Blueprint

bp = Blueprint('auth', __name__,
               url_prefix='/auth',
               template_folder='templates',
               static_folder='static')

from . import routes