mirror of
https://github.com/teest114514/chatlog_alpha.git
synced 2026-04-08 23:09:54 +08:00
17 lines
454 B
Go
17 lines
454 B
Go
package conf
|
|
|
|
type Webhook struct {
|
|
Host string `mapstructure:"host"`
|
|
DelayMs int64 `mapstructure:"delay_ms"`
|
|
Items []*WebhookItem `mapstructure:"items"`
|
|
}
|
|
|
|
type WebhookItem struct {
|
|
Type string `mapstructure:"type"`
|
|
URL string `mapstructure:"url"`
|
|
Talker string `mapstructure:"talker"`
|
|
Sender string `mapstructure:"sender"`
|
|
Keyword string `mapstructure:"keyword"`
|
|
Disabled bool `mapstructure:"disabled"`
|
|
}
|