aboutsummaryrefslogtreecommitdiff
path: root/app/auth/__init__.py
blob: c9386938bbaa5b8fe738ad3b4fe92ef81d22736c (plain)
1
2
3
4
5
6
7
# -*- coding: utf-8 -*-

from flask import Blueprint

bp = Blueprint('auth', __name__)

from app.auth import routes