Files
photoprism/internal/form/batch/actions.go
2025-05-04 14:09:23 +02:00

11 lines
170 B
Go

package batch
type Action = string
const (
ActionNone Action = "none"
ActionUpdate Action = "update"
ActionAdd Action = "add"
ActionRemove Action = "remove"
)