Files
kim.dev.6789 b7f8db7d08 复制项目
2026-01-14 22:35:45 +08:00

14 lines
318 B
Go

package botstruct
// see openim-sdk-core\sdk_struct\sdk_struct.go
type TextElem struct {
Content string `json:"content"`
}
type AtElem struct {
Text string `mapstructure:"text"`
AtUserList []string `mapstructure:"atUserList" validate:"required,max=1000"`
IsAtSelf bool `mapstructure:"isAtSelf"`
}