1 2 3 4 5 6 7 8
from flask import Blueprint bp = Blueprint('auth', __name__, url_prefix='/auth', template_folder='templates', static_folder='static') from . import routes