Ensure that btree threadedStoreIndexer implements orderedLister

This commit is contained in:
Marek Siarkowicz 2025-02-19 11:47:26 +01:00
parent 931ad2a9fd
commit 9988145383

View File

@ -44,6 +44,8 @@ type threadedStoreIndexer struct {
indexer indexer
}
var _ orderedLister = (*threadedStoreIndexer)(nil)
func (si *threadedStoreIndexer) Add(obj interface{}) error {
return si.addOrUpdate(obj)
}