mirror of https://github.com/stashapp/stash.git
7 lines
106 B
Go
7 lines
106 B
Go
|
package api
|
||
|
|
||
|
// An enum https://golang.org/ref/spec#Iota
|
||
|
const (
|
||
|
create = iota // 0
|
||
|
update = iota // 1
|
||
|
)
|