You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some code about service in my .proto, after "protoc --swift_out=. im.proto" ,there is no code about service that I wanted in .pb.swift
service IM {
// 客户端发送消息
rpc SendMsg (SendMessage) returns (SendResult) {}
// 服务端推送新消息
rpc NewMsg (EmptyRequest) returns (stream NewMessage) {}
}
The text was updated successfully, but these errors were encountered:
There are some code about service in my .proto, after "protoc --swift_out=. im.proto" ,there is no code about service that I wanted in .pb.swift
service IM {
// 客户端发送消息
rpc SendMsg (SendMessage) returns (SendResult) {}
// 服务端推送新消息
rpc NewMsg (EmptyRequest) returns (stream NewMessage) {}
}
The text was updated successfully, but these errors were encountered: