Cloner describes methods of clone management.
| 31 | |
| 32 | // Cloner describes methods of clone management. |
| 33 | type Cloner interface { |
| 34 | CreateClone(branch, name, snapshotID string, revision int) error |
| 35 | DestroyClone(branch, name string, revision int) error |
| 36 | ListClonesNames() ([]string, error) |
| 37 | } |
| 38 | |
| 39 | // StateReporter describes methods of state reporting. |
| 40 | type StateReporter interface { |
no outgoing calls
no test coverage detected