1 2 3 4 5 6
from flask import Flask from .blueprints import web app = Flask(__name__) app.register_blueprint(web.web_controller)