from flask import Blueprint from modules.uploads.upload_controller import ( upload_device_type_icon_controller, upload_device_avatar_controller, ) upload_bp = Blueprint("uploads", __name__) upload_bp.route("/device-type-icons", methods=["POST"])(upload_device_type_icon_controller) upload_bp.route("/device-avatars", methods=["POST"])(upload_device_avatar_controller)