mirror of
https://github.com/stashapp/stash-box.git
synced 2026-02-19 23:55:57 -06:00
* Initial performer prototype * Drop file: from migration url to fix panic * Remove vendor requirement
8 lines
107 B
Go
8 lines
107 B
Go
package api
|
|
|
|
// An enum https://golang.org/ref/spec#Iota
|
|
const (
|
|
create = iota // 0
|
|
update = iota // 1
|
|
)
|