stash/pkg/models/repository_blob.go
hidewrong 4c0d9d0a07
chore: fix struct names (#4766)
Signed-off-by: hidewrong <hidewrong@outlook.com>
2024-05-02 12:04:54 +10:00

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)
}