1// Copyright 2021 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4// 5// **** DO NOT EDIT - this file was automatically generated. **** 6syntax = "proto3"; 7 8package cast.common; 9 10option optimize_for = LITE_RUNTIME; 11 12// A Cast service info. 13message ServiceInfo { 14 oneof endpoint_address { 15 // gRPC endpoint (http://, unix:/ etc). 16 string grpc_endpoint = 1; 17 } 18} 19