-------------------------------------------------------- OpenStore returns a store instance for a directory. An empty directory results in an empty store.
(dir string, options StoreOptions)
| 245 | // OpenStore returns a store instance for a directory. An empty |
| 246 | // directory results in an empty store. |
| 247 | func OpenStore(dir string, options StoreOptions) (*Store, error) { |
| 248 | return openStore(dir, options) |
| 249 | } |
| 250 | |
| 251 | // Dir returns the directory for this store |
| 252 | func (s *Store) Dir() string { |
searching dependent graphs…