(port string)
| 123 | } |
| 124 | |
| 125 | func (service *Service) AppendPort(port string) { |
| 126 | service.Ports = append(service.Ports, port) |
| 127 | } |
| 128 | |
| 129 | // 是否包含某个容器端口的映射 |
| 130 | func (service *Service) ContainContainerPort(port int) bool { |
no outgoing calls
no test coverage detected