This commit is contained in:
QuangMinh_123
2026-05-27 13:50:27 +07:00
parent 7aebcf9567
commit 2683cdb882
30 changed files with 2091 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
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)