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