|
|
@@ -1243,7 +1243,6 @@ type BusinessExtServer interface { |
|
|
|
CloudUploadFile(context.Context, *CloudUploadFileReq) (*CloudUploadFileResp, error) |
|
|
|
// 获取表情 |
|
|
|
EmoticonList(context.Context, *Empty) (*EmoticonListResp, error) |
|
|
|
mustEmbedUnimplementedBusinessExtServer() |
|
|
|
} |
|
|
|
|
|
|
|
// UnimplementedBusinessExtServer must be embedded to have forward compatible implementations. |
|
|
@@ -1268,14 +1267,6 @@ func (UnimplementedBusinessExtServer) CloudUploadFile(context.Context, *CloudUpl |
|
|
|
func (UnimplementedBusinessExtServer) EmoticonList(context.Context, *Empty) (*EmoticonListResp, error) { |
|
|
|
return nil, status.Errorf(codes.Unimplemented, "method EmoticonList not implemented") |
|
|
|
} |
|
|
|
func (UnimplementedBusinessExtServer) mustEmbedUnimplementedBusinessExtServer() {} |
|
|
|
|
|
|
|
// UnsafeBusinessExtServer may be embedded to opt out of forward compatibility for this service. |
|
|
|
// Use of this interface is not recommended, as added methods to BusinessExtServer will |
|
|
|
// result in compilation errors. |
|
|
|
type UnsafeBusinessExtServer interface { |
|
|
|
mustEmbedUnimplementedBusinessExtServer() |
|
|
|
} |
|
|
|
|
|
|
|
func RegisterBusinessExtServer(s grpc.ServiceRegistrar, srv BusinessExtServer) { |
|
|
|
s.RegisterService(&BusinessExt_ServiceDesc, srv) |
|
|
|