mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-04 16:09:33 +00:00
7 lines
115 B
Go
7 lines
115 B
Go
package model
|
|
|
|
type Perm struct {
|
|
Pull bool `json:"pull"`
|
|
Push bool `json:"push"`
|
|
Admin bool `json:"admin"`
|
|
}
|