NewDiffApplier returns a new comparer and applier which communicates over a GRPC connection.
(client diffapi.DiffClient)
| 35 | // NewDiffApplier returns a new comparer and applier which communicates |
| 36 | // over a GRPC connection. |
| 37 | func NewDiffApplier(client diffapi.DiffClient) any { |
| 38 | return &diffRemote{ |
| 39 | client: client, |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | type diffRemote struct { |
| 44 | client diffapi.DiffClient |
no outgoing calls
no test coverage detected
searching dependent graphs…