Files
netbird/management/server/permissions/operations/operation.go

11 lines
167 B
Go

package operations
type Operation string
const (
Create Operation = "create"
Read Operation = "read"
Update Operation = "update"
Delete Operation = "delete"
)