mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
8 lines
180 B
Go
8 lines
180 B
Go
package models
|
|
|
|
import "context"
|
|
|
|
// BlobReader provides methods to get files by ID.
|
|
type BlobReader interface {
|
|
EntryExists(ctx context.Context, checksum string) (bool, error)
|
|
}
|