NewStore returns a new store for a local file path
(root string)
| 30 | |
| 31 | // NewStore returns a new store for a local file path |
| 32 | func NewStore(root string) Store { |
| 33 | return &fsStore{root: root} |
| 34 | } |
| 35 | |
| 36 | // Remove a manifest list from local storage |
| 37 | func (s *fsStore) Remove(listRef reference.Reference) error { |
no outgoing calls
searching dependent graphs…