mirror of
https://github.com/stashapp/stash.git
synced 2026-06-11 18:35:26 -05:00
* Added flags to customize the host and port * Start up just one server rather than a server for HTTP and HTTPS. HTTPS server will only start if a cert and key are found
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
|
|
)
|