14 lines
126 B
Go
14 lines
126 B
Go
package models
|
|
|
|
type Permission int
|
|
|
|
const (
|
|
Start Permission = 1 << iota
|
|
Stop
|
|
Browse
|
|
Create
|
|
Delete
|
|
RunCommand
|
|
Admin
|
|
)
|