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:"-"`
|
||
|
}
|