blob: d0e6fe2e9bc61561f8e13fa6ef737a88ec38abc5 [file] [log] [blame] [edit]
syntax = "proto3";
package frc971;
import "google/protobuf/empty.proto";
import "build_tests/proto_base.proto";
message TestProto {
string s = 1;
int32 i = 2;
// Making sure that well-known protos work.
.google.protobuf.Empty empty = 3;
// Making sure we can depend on other protos.
BaseProto base_proto = 4;
}