mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-13 19:15:27 +00:00
10 lines
182 B
Go
10 lines
182 B
Go
|
package model
|
||
|
|
||
|
type Request struct {
|
||
|
Host string `json:"-"`
|
||
|
User *User `json:"-"`
|
||
|
Repo *Repo `json:"repo"`
|
||
|
Commit *Commit `json:"commit"`
|
||
|
Server *Server `json:"-"`
|
||
|
}
|