mirror of
https://github.com/stashapp/stash-box.git
synced 2026-02-06 18:24:05 -06:00
10 lines
182 B
Go
10 lines
182 B
Go
package api
|
|
|
|
// https://stackoverflow.com/questions/40891345/fix-should-not-use-basic-type-string-as-key-in-context-withvalue-golint
|
|
|
|
type key int
|
|
|
|
const (
|
|
ContextRepo key = iota
|
|
)
|