mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-30 19:56:36 +08:00
11 lines
170 B
Go
11 lines
170 B
Go
package batch
|
|
|
|
type Action = string
|
|
|
|
const (
|
|
ActionNone Action = "none"
|
|
ActionUpdate Action = "update"
|
|
ActionAdd Action = "add"
|
|
ActionRemove Action = "remove"
|
|
)
|