StoreData will store arbitrary data and return the corresponding hash
(data []byte)
| 67 | |
| 68 | // StoreData will store arbitrary data and return the corresponding hash |
| 69 | func (c *RepoCache) StoreData(data []byte) (repository.Hash, error) { |
| 70 | return c.repo.StoreData(data) |
| 71 | } |
| 72 | |
| 73 | // Fetch retrieve updates from a remote |
| 74 | // This does not change the local bugs or identities state |