mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 08:06:52 +02: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:"-"`
|
|
}
|