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