__init__.py 214 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 from flask import Blueprint bp = Blueprint('main', __name__, template_folder='templates', static_folder='static', static_url_path='/main/static') from . import routes