ref: b90593c9b83f71de343e27cd1b489dff79bd4ac7
dir: /refstore/files/close.go/
package files
// Close releases resources associated with the store.
//
// Store borrows gitRoot, so Close does not close it.
// Transactions and batches borrowing the store are invalid after Close.
//
// Repeated calls to Close are undefined behavior.
func (store *Store) Close() error {
return store.commonRoot.Close()
}