标签:io ar 使用 sp 文件 on as c++ python
package test; option cc_generic_services = true; //编译c++文件时,生成Service及Service_Stub接口类 option py_generic_services = true; //编译python文件时,生成Service及Service_Stub接口类 message request { required string name =1; }; message response { required string status = 1; }; service TestService { rpc test_interface(request) returns (response); };
标签:io ar 使用 sp 文件 on as c++ python
原文地址:http://my.oschina.net/zmlblog/blog/343656