feat: itchat support picture msg

This commit is contained in:
lanvent
2023-04-09 00:45:42 +08:00
parent 3174b1158c
commit 8779eab36b
4 changed files with 17 additions and 3 deletions

View File

@@ -5,7 +5,8 @@ from enum import Enum
class ContextType (Enum):
TEXT = 1 # 文本消息
VOICE = 2 # 音频消息
IMAGE_CREATE = 3 # 创建图片命令
IMAGE = 3 # 图片消息
IMAGE_CREATE = 10 # 创建图片命令
def __str__(self):
return self.name