aboutsummaryrefslogtreecommitdiff
path: root/object/fetch/fetcher.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-27 09:08:40 +0000
committerGravatar Runxi Yu2026-03-27 09:08:40 +0000
commitd7e90798170265b37ea5f980f94ca310cfda3180 (patch)
tree89921ca5cb6dd5aaefa3c0ae72352381261cb1e6 /object/fetch/fetcher.go
parentCONTRIBUTING: Fix submitting changes deadlines (diff)
signatureNo signature
object/store: Rename from object/storer
Diffstat (limited to 'object/fetch/fetcher.go')
-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}
}