autogits/bots-common/request_wiki.go
2024-08-28 00:45:47 +02:00

16 lines
209 B
Go

package common
type WikiWebhookEvent struct {
Action string
Page string
Comment string
Repository *Repository
Sender User
}
func (w *WikiWebhookEvent) GetAction() string {
return w.Action
}