1// Protocol Buffers - Google's data interchange format 2// Copyright 2008 Google Inc. All rights reserved. 3// 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file or at 6// https://developers.google.com/open-source/licenses/bsd 7 8edition = "2023"; 9 10package any_test; 11 12import "google/protobuf/any.proto"; 13 14option java_package = "any_test"; 15option java_outer_classname = "AnyTestProto"; 16 17message TestAny { 18 google.protobuf.Any value = 1; 19} 20