blob: 37dde9b91dc35078f0a210412dea10724f0e6af1 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package files
// Close releases resources associated with the store.
func (store *Store) Close() error {
err := store.gitRoot.Close()
commonErr := store.commonRoot.Close()
if err != nil {
return err
}
return commonErr
}
|