mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Move graphql generated files to api * Refactor identify options * Remove models.StashBoxes * Move ScraperSource to scraper package * Rename field strategy enums * Rename identify.TaskOptions to Options
13 lines
283 B
Go
13 lines
283 B
Go
package models
|
|
|
|
type StashBoxFingerprint struct {
|
|
Algorithm string `json:"algorithm"`
|
|
Hash string `json:"hash"`
|
|
Duration int `json:"duration"`
|
|
}
|
|
|
|
type StashBox struct {
|
|
Endpoint string `json:"endpoint"`
|
|
APIKey string `json:"api_key"`
|
|
Name string `json:"name"`
|
|
}
|