11 lines
156 B
Go
11 lines
156 B
Go
|
package wxworkbot
|
||
|
|
||
|
type markdownMessage struct {
|
||
|
message
|
||
|
Markdown Markdown `json:"markdown"`
|
||
|
}
|
||
|
|
||
|
type Markdown struct {
|
||
|
Content string `json:"content"`
|
||
|
}
|