mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 16:31:01 +00: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"`
|
||
|
}
|