mirror of
https://github.com/stashapp/stash.git
synced 2025-12-16 20:07:05 +03:00
9 lines
180 B
Go
9 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)
|
|
}
|