码迷,mamicode.com
首页 > 编程语言 > 详细

python使用.proto文件生成service接口失败

时间:2014-11-12 19:53:33      阅读:592      评论:0      收藏:0      [点我收藏+]

标签: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);
};



python使用.proto文件生成service接口失败

标签:io   ar   使用   sp   文件   on   as   c++   python   

原文地址:http://my.oschina.net/zmlblog/blog/343656

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!