mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Rename Movie and MoviePartial to Group/GroupPartial * Rename Movie interfaces * Update movie url builders to use group * Rename movieRoutes to groupRoutes * Update dataloader * Update names in sqlite package * Rename in resolvers * Add GroupByURL to scraper config * Scraper backward compatibility hacks
17 lines
283 B
Go
17 lines
283 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 (
|
|
// galleryKey key = 0
|
|
performerKey key = iota + 1
|
|
sceneKey
|
|
studioKey
|
|
groupKey
|
|
tagKey
|
|
downloadKey
|
|
imageKey
|
|
pluginKey
|
|
)
|