aboutsummaryrefslogtreecommitdiff
path: root/object/store/memory/algorithm.go
blob: ac847019ac023093d7bed53fc450772302885a16 (about) (plain) (blame)
1
2
3
4
5
6
7
8
package memory

import objectid "lindenii.org/go/furgit/object/id"

// Algorithm returns the object ID algorithm used by the store.
func (store *Store) Algorithm() objectid.Algorithm {
	return store.algo
}