| 64 | } |
| 65 | |
| 66 | type OperationWithApply[SnapT Snapshot] interface { |
| 67 | Operation |
| 68 | |
| 69 | // Apply the operation to a Snapshot to create the final state |
| 70 | Apply(snapshot SnapT) |
| 71 | } |
| 72 | |
| 73 | // OperationWithFiles is an optional extension for an Operation that has files dependency, stored in git. |
| 74 | type OperationWithFiles interface { |
nothing calls this directly
no outgoing calls
no test coverage detected