3
0
Files
corteza/pkg/revisions/operations.go
2022-07-31 16:29:28 +02:00

15 lines
273 B
Go

package revisions
type (
Operation = string
)
const (
unknown Operation = ""
Created = "created"
Updated = "updated"
SoftDeleted = "soft-deleted"
Restored = "restored"
HardDeleted = "hard-deleted"
)