backend/models/permissions.go
2024-05-23 23:19:38 +03:00

15 lines
147 B
Go

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