from flask import Blueprint

bills_bp = Blueprint('bills', __name__, template_folder='templates')

from app.blueprints.bills import routes  # noqa: F401, E402
