1
0
Fork 0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-03-11 07:01:17 +00:00
woodpecker/model/perm.go
2015-09-29 18:21:17 -07:00

7 lines
115 B
Go

package model
type Perm struct {
Pull bool `json:"pull"`
Push bool `json:"push"`
Admin bool `json:"admin"`
}