from flask import Flask from .controllers.top import top_bp def create_app(): app = Flask(__name__) app.register_blueprint(top_bp) return app