Storage is a transactional implementation of git.Storer, it demux the write and read operation of two separate storers, allowing to merge content calling Storage.Commit. The API and functionality of this package are considered EXPERIMENTAL and is not considered stable nor production ready.
| 14 | // The API and functionality of this package are considered EXPERIMENTAL and is |
| 15 | // not considered stable nor production ready. |
| 16 | type Storage interface { |
| 17 | storage.Storer |
| 18 | Commit() error |
| 19 | } |
| 20 | |
| 21 | // basic implements the Storage interface. |
| 22 | type basic struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…