Versions in this module Expand all Collapse all v0 v0.3.1 Aug 21, 2026 Changes in this version + type LocalStore struct + func NewLocalStore(root string) *LocalStore + func (s *LocalStore) Get(contentHash string) ([]byte, error) + func (s *LocalStore) Has(contentHash string) (bool, error) + func (s *LocalStore) Put(content []byte) (string, error) + type Store interface + Get func(contentHash string) ([]byte, error) + Has func(contentHash string) (bool, error) + Put func(content []byte) (contentHash string, err error)