nopaque/app/errors/__init__.py

6 lines
88 B
Python
Raw Permalink Normal View History

2023-05-15 10:00:13 +00:00
from flask import Blueprint
2020-10-12 11:26:35 +00:00
2023-05-15 10:00:13 +00:00
bp = Blueprint('errors', __name__)
from . import handlers