mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 08:54:10 +01:00
* Add clean generate task * Add to library tasks * Save and read defaults * Stop handling and logging * Make filename parsing more robust
8 lines
180 B
Go
8 lines
180 B
Go
package models
|
|
|
|
import "context"
|
|
|
|
// FileGetter provides methods to get files by ID.
|
|
type BlobReader interface {
|
|
EntryExists(ctx context.Context, checksum string) (bool, error)
|
|
}
|