...

Text file src/github.com/tjfoc/gmsm/gmtls/gmcredentials/echo/echo.proto

Documentation: github.com/tjfoc/gmsm/gmtls/gmcredentials/echo

     1syntax = "proto3";
     2
     3package echo;
     4
     5service Echo{
     6    rpc Echo(EchoRequest) returns (EchoResponse){}
     7}
     8
     9message EchoRequest{
    10    string req = 1;
    11}
    12
    13message EchoResponse{
    14    string result = 1;
    15}

View as plain text