mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
15 lines
215 B
Python
15 lines
215 B
Python
from strenum import StrEnum
|
|
|
|
|
|
class ImageHandleType(StrEnum):
|
|
"""
|
|
图片处理类型
|
|
"""
|
|
|
|
UPLOAD = "UPLOAD"
|
|
"""上传"""
|
|
DELETE = "DELETE"
|
|
"""删除"""
|
|
MOVE = "MOVE"
|
|
"""移动"""
|