aboutsummaryrefslogtreecommitdiff
path: root/app/errors/__init__.py
blob: e0044bc9afb046cd3cb75c38c4bde739ad877f06 (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("errors", __name__)

from app.errors import handlers