gokins/hook/pr.go
2021-07-22 10:53:38 +08:00

23 lines
314 B
Go

package hook
import "time"
type (
// PullRequest represents a repository pull request.
PullRequest struct {
Number int64
Title string
Body string
Base Reference
Head Reference
Author User
Created time.Time
Updated time.Time
}
Comment struct {
Body string
Author User
}
)