| 20 | type Stream chan string |
| 21 | |
| 22 | type Sync struct { |
| 23 | Container string |
| 24 | Local string |
| 25 | Remote string |
| 26 | |
| 27 | docker *docker.Client |
| 28 | lock sync.Mutex |
| 29 | ignores []string |
| 30 | incoming chan changes.Change |
| 31 | outgoing chan changes.Change |
| 32 | |
| 33 | incomingBlocks map[string]int |
| 34 | outgoingBlocks map[string]int |
| 35 | } |
| 36 | |
| 37 | type execState struct { |
| 38 | Running bool |
nothing calls this directly
no outgoing calls
no test coverage detected