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; | |
} |