github.com/google/cloudprober@v0.11.3/targets/testdata/testdata.proto (about) 1 syntax = "proto2"; 2 3 package cloudprober.targets.testdata; 4 5 import "github.com/google/cloudprober/targets/proto/targets.proto"; 6 7 option go_package = "github.com/google/cloudprober/targets/testdata"; 8 9 message FancyTargets { 10 optional string name = 1; 11 } 12 13 message AnotherFancyTargets { 14 optional string name = 1; 15 } 16 17 extend targets.TargetsDef { 18 optional FancyTargets fancy_targets = 200; 19 optional AnotherFancyTargets another_fancy_targets = 201; 20 }