From d7e90798170265b37ea5f980f94ca310cfda3180 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Fri, 27 Mar 2026 09:08:40 +0000 Subject: object/store: Rename from object/storer --- object/fetch/fetcher.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'object/fetch/fetcher.go') diff --git a/object/fetch/fetcher.go b/object/fetch/fetcher.go index ed4e74a1..b0c3d099 100644 --- a/object/fetch/fetcher.go +++ b/object/fetch/fetcher.go @@ -1,17 +1,17 @@ package fetch -import objectstorer "codeberg.org/lindenii/furgit/object/storer" +import objectstore "codeberg.org/lindenii/furgit/object/store" // Fetcher resolves parsed and streamed objects from an object store. // // A Fetcher does not take ownership of the store and does not close it. type Fetcher struct { - store objectstorer.Store + store objectstore.Store } // New returns a Fetcher that reads objects from store. // // The returned Fetcher does not take ownership of store. -func New(store objectstorer.Store) *Fetcher { +func New(store objectstore.Store) *Fetcher { return &Fetcher{store: store} } -- cgit v1.3.1-10-gc9f91