1package memory 2 3import "codeberg.org/lindenii/furgit/objectid" 4 5// Algorithm returns the object ID algorithm used by the store. 6func (store *Store) Algorithm() objectid.Algorithm { 7 return store.algo 8}