syntax = "proto3"; service RouteApproaches { rpc GetApproach(ApproachID) returns (Approach) {} } message ApproachID { int32 approachID = 1; } message Approach { int32 reps = 1; double weight = 2; }