mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
* Add clean generate task * Add to library tasks * Save and read defaults * Stop handling and logging * Make filename parsing more robust
9 lines
180 B
Go
9 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)
|
|
}
|