Files
netbird/management/internals/modules/permissions/operations/operation.go
2026-03-06 18:19:33 +01:00

11 lines
167 B
Go

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