mirror of https://github.com/hashicorp/consul
12 lines
197 B
Protocol Buffer
12 lines
197 B
Protocol Buffer
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
|
syntax = "proto3";
|
||
|
|
||
|
package hashicorp.consul.mesh.v1alpha1;
|
||
|
|
||
|
message HostPortAddress {
|
||
|
string host = 1;
|
||
|
uint32 port = 2;
|
||
|
}
|