mirror of
https://github.com/harness/drone.git
synced 2025-05-02 13:40:22 +00:00
8 lines
115 B
Go
8 lines
115 B
Go
package model
|
|
|
|
type Perm struct {
|
|
Pull bool `json:"pull"`
|
|
Push bool `json:"push"`
|
|
Admin bool `json:"admin"`
|
|
}
|