I have a method that I would like defined called FindAll which requires no parameters. ProtoC is complaining.
Expected type name.
This is for line:
rpc findAll () returns (BenchmarksList);
syntax = "proto3";
package helloWorldGRPC;
service HelloWorldGRPCService {
    rpc findById (BenchmarksById) returns (Benchmarks);
    rpc findAll () returns (BenchmarksList);
}
message BenchmarksById {
    string id = 1;
}
message BenchmarksList {
    repeated Benchmarks benchmarks = 1;
}
message Benchmarks {
    string trans_id = 1;
    string protocol = 2;
    string database = 3;
    string updated_at = 4;
    string created_at = 5;
    repeated Action actions = 6;
}
message Action {
    string trans_id = 1;
    int32 payload_length = 2;
    string payload = 3;
    string status = 4;
    string updated_at = 5;
    string created_at = 6;
}
 
    