autogits/bots-common/request_fork.go

13 lines
180 B
Go
Raw Normal View History

2024-08-24 17:20:46 +02:00
package common
type ForkWebhookEvent struct {
2024-08-27 12:15:59 +02:00
Forkee *Repository
Repository *Repository
Sender *User
2024-08-24 17:20:46 +02:00
}
2024-08-28 00:45:47 +02:00
func (*ForkWebhookEvent) GetAction() string {
return "fork"
}