aboutsummaryrefslogtreecommitdiff
path: root/object/fetch
diff options
context:
space:
mode:
Diffstat (limited to 'object/fetch')
-rw-r--r--object/fetch/fetcher.go6
1 files changed, 3 insertions, 3 deletions
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}
}