mirror of https://github.com/status-im/consul.git
9 lines
162 B
Go
9 lines
162 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
package ports
|
||
|
|
||
|
type troubleShootProtocol interface {
|
||
|
dialPort(hostPort *hostPort) error
|
||
|
}
|