初始化项目

This commit is contained in:
2022-07-21 23:10:41 +08:00
parent 858ee66482
commit 05b77d99c7
16 changed files with 636 additions and 7 deletions

11
image.go Normal file
View File

@@ -0,0 +1,11 @@
package wxworkbot
type imageMessage struct {
message
Image Image `json:"image"`
}
type Image struct {
Base64 string `json:"base64"`
MD5 string `json:"md5"`
}