mirror of https://github.com/status-im/consul.git
10 lines
137 B
Go
10 lines
137 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
package ports
|
||
|
|
||
|
type hostPort struct {
|
||
|
host string
|
||
|
port string
|
||
|
}
|