1ffe3c632Sopenharmony_cisyntax = "proto3"; 2ffe3c632Sopenharmony_ci 3ffe3c632Sopenharmony_cipackage foo; 4ffe3c632Sopenharmony_ci 5ffe3c632Sopenharmony_cioption php_generic_services = true; 6ffe3c632Sopenharmony_ci 7ffe3c632Sopenharmony_ciservice Greeter { 8ffe3c632Sopenharmony_ci rpc SayHello (HelloRequest) returns (HelloReply) {} 9ffe3c632Sopenharmony_ci rpc SayHelloAgain (HelloRequest) returns (HelloReply) {} 10ffe3c632Sopenharmony_ci} 11ffe3c632Sopenharmony_ci 12ffe3c632Sopenharmony_cimessage HelloRequest { 13ffe3c632Sopenharmony_ci string name = 1; 14ffe3c632Sopenharmony_ci} 15ffe3c632Sopenharmony_ci 16ffe3c632Sopenharmony_cimessage HelloReply { 17ffe3c632Sopenharmony_ci string message = 1; 18ffe3c632Sopenharmony_ci} 19