aboutsummaryrefslogtreecommitdiff
path: root/commitquery/context.go
diff options
context:
space:
mode:
Diffstat (limited to 'commitquery/context.go')
-rw-r--r--commitquery/context.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commitquery/context.go b/commitquery/context.go
index 74f094b1..35fc47cf 100644
--- a/commitquery/context.go
+++ b/commitquery/context.go
@@ -4,13 +4,13 @@ package commitquery
import (
commitgraphread "codeberg.org/lindenii/furgit/format/commitgraph/read"
objectid "codeberg.org/lindenii/furgit/object/id"
- objectstorer "codeberg.org/lindenii/furgit/object/storer"
+ objectstore "codeberg.org/lindenii/furgit/object/store"
)
// Query owns the mutable node arena for commit-domain queries over one object
// store.
type Query struct {
- store objectstorer.Store
+ store objectstore.Store
graph *commitgraphread.Reader
nodes []node
@@ -24,7 +24,7 @@ type Query struct {
// New builds one reusable commit query arena over one object store and optional
// commit-graph reader.
-func New(store objectstorer.Store, graph *commitgraphread.Reader) *Query {
+func New(store objectstore.Store, graph *commitgraphread.Reader) *Query {
return &Query{
store: store,
graph: graph,