mirror of
https://github.com/harness/drone.git
synced 2025-05-07 05:29:08 +08:00
9 lines
155 B
Go
9 lines
155 B
Go
package model
|
|
|
|
type Request struct {
|
|
Host string `json:"-"`
|
|
User *User `json:"-"`
|
|
Repo *Repo `json:"repo"`
|
|
Commit *Commit `json:"commit"`
|
|
}
|