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

# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk>
# License: See LICENSE file
# Copyright: 2020 (c) The Alan Turing Institute

from flask import Blueprint

bp = Blueprint('auth', __name__)

from app.auth import routes