diff options
| -rw-r--r-- | objectstore/objectstore.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/objectstore/objectstore.go b/objectstore/objectstore.go index 7ff5d809..58b091ef 100644 --- a/objectstore/objectstore.go +++ b/objectstore/objectstore.go @@ -40,3 +40,9 @@ type Store interface { // Close releases resources associated with the backend. Close() error } + +// type Cursor any +// +// Then make all read functions accept and provide a Cursor +// nil must always be accepted and would exhibit the same behavior as right now +// Non-nil behavior is implementation-defined: e.g., pack selection |
