Fast implementation of Git in pure Go
at master 8 lines 202 B view raw
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}