| 90 | } |
| 91 | |
| 92 | type zero struct { |
| 93 | id int // 0, 1, 2 |
| 94 | containerID string // container ID in docker world |
| 95 | containerName string // something like test-1234_zero2 |
| 96 | aliasName string // something like alpha0, zero1 |
| 97 | isRunning bool |
| 98 | myAddrOverride string // if set, overrides the --my flag value |
| 99 | } |
| 100 | |
| 101 | func (z *zero) cname() string { |
| 102 | return z.containerName |
nothing calls this directly
no outgoing calls
no test coverage detected