mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 19:17:38 +08:00
19 lines
315 B
Go
19 lines
315 B
Go
package message
|
|
|
|
type SourceType byte
|
|
|
|
// MessageSourceType 常量
|
|
const (
|
|
SourcePrivate SourceType = 1 << iota
|
|
SourceGroup
|
|
SourceGuildChannel
|
|
SourceGuildDirect
|
|
)
|
|
|
|
// Source 消息来源
|
|
type Source struct {
|
|
SourceType SourceType
|
|
PrimaryID int64 // 群号/QQ号/guild_id
|
|
SecondaryID int64 // channel_id
|
|
}
|