diff options
| author | 2026-03-31 02:40:34 +0000 | |
|---|---|---|
| committer | 2026-03-31 02:40:34 +0000 | |
| commit | da6764565629b0376f8d505bdd9d5fdc9c567f93 (patch) | |
| tree | 6b855e5e4ba9c740f76016f42c1bb5ebd9fb9447 /ref/store/files | |
| parent | object/fetch: Remove peel to tag functions (diff) | |
| signature | No signature | |
ref/store: Simplify names v0.1.166
Diffstat (limited to 'ref/store/files')
| -rw-r--r-- | ref/store/files/store.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ref/store/files/store.go b/ref/store/files/store.go index 9e548af5..66d46d06 100644 --- a/ref/store/files/store.go +++ b/ref/store/files/store.go @@ -25,7 +25,7 @@ type Store struct { } var ( - _ refstore.ReadingStore = (*Store)(nil) - _ refstore.TransactionalStore = (*Store)(nil) - _ refstore.BatchStore = (*Store)(nil) + _ refstore.Reader = (*Store)(nil) + _ refstore.Transactioner = (*Store)(nil) + _ refstore.Batcher = (*Store)(nil) ) |
