11 lines
378 B
Python
11 lines
378 B
Python
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) |