backend/models/permissions.go
2024-05-12 00:53:08 +03:00

14 lines
139 B
Go

package models
type Permission int
const (
Start Permission = 1 << iota
Stop
Browse
Create
Delete
RunCommand
Admin
)