diff options
| author | 2026-03-27 09:08:40 +0000 | |
|---|---|---|
| committer | 2026-03-27 09:08:40 +0000 | |
| commit | d7e90798170265b37ea5f980f94ca310cfda3180 (patch) | |
| tree | 89921ca5cb6dd5aaefa3c0ae72352381261cb1e6 /commitquery/context.go | |
| parent | CONTRIBUTING: Fix submitting changes deadlines (diff) | |
| signature | No signature | |
object/store: Rename from object/storer
Diffstat (limited to 'commitquery/context.go')
| -rw-r--r-- | commitquery/context.go | 6 |
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, |
