Compare commits
	
		
			4 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 6598207411 | |||
| 1a1abef074 | |||
| ed55b71443 | |||
| be28fff75a | 
| @@ -27,8 +27,8 @@ | |||||||
| ```go | ```go | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| 	"git.0yue.com/shenxianhe/sdk/account/v1" | 	"git.shenxianhe.cn/shenxianhe/sdk/account/v1" | ||||||
| 	"git.0yue.com/shenxianhe/sdk/notification/v1" | 	"git.shenxianhe.cn/shenxianhe/sdk/notification/v1" | ||||||
| 	"connectrpc.com/connect" | 	"connectrpc.com/connect" | ||||||
| ) | ) | ||||||
| ``` | ``` | ||||||
| @@ -59,10 +59,6 @@ if err != nil { | |||||||
| result := resp.Msg | result := resp.Msg | ||||||
| ``` | ``` | ||||||
|  |  | ||||||
| ## 版本历史 |  | ||||||
|  |  | ||||||
| - 详见 Git 仓库中的 tag 信息 |  | ||||||
|  |  | ||||||
| ## 注意事项 | ## 注意事项 | ||||||
|  |  | ||||||
| - 本 SDK 由代码自动生成,请勿手动修改 | - 本 SDK 由代码自动生成,请勿手动修改 | ||||||
|   | |||||||
| @@ -499,7 +499,8 @@ func (*GetAvatarUploadURLRequest) Descriptor() ([]byte, []int) { | |||||||
|  |  | ||||||
| type GetAvatarUploadURLResponse struct { | type GetAvatarUploadURLResponse struct { | ||||||
| 	state         protoimpl.MessageState `protogen:"open.v1"` | 	state         protoimpl.MessageState `protogen:"open.v1"` | ||||||
| 	Url           string                 `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"` | 	Key           string                 `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` | ||||||
|  | 	Url           string                 `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` | ||||||
| 	unknownFields protoimpl.UnknownFields | 	unknownFields protoimpl.UnknownFields | ||||||
| 	sizeCache     protoimpl.SizeCache | 	sizeCache     protoimpl.SizeCache | ||||||
| } | } | ||||||
| @@ -534,6 +535,13 @@ func (*GetAvatarUploadURLResponse) Descriptor() ([]byte, []int) { | |||||||
| 	return file_account_v1_account_proto_rawDescGZIP(), []int{9} | 	return file_account_v1_account_proto_rawDescGZIP(), []int{9} | ||||||
| } | } | ||||||
|  |  | ||||||
|  | func (x *GetAvatarUploadURLResponse) GetKey() string { | ||||||
|  | 	if x != nil { | ||||||
|  | 		return x.Key | ||||||
|  | 	} | ||||||
|  | 	return "" | ||||||
|  | } | ||||||
|  |  | ||||||
| func (x *GetAvatarUploadURLResponse) GetUrl() string { | func (x *GetAvatarUploadURLResponse) GetUrl() string { | ||||||
| 	if x != nil { | 	if x != nil { | ||||||
| 		return x.Url | 		return x.Url | ||||||
| @@ -543,7 +551,7 @@ func (x *GetAvatarUploadURLResponse) GetUrl() string { | |||||||
|  |  | ||||||
| type SetAvatarRequest struct { | type SetAvatarRequest struct { | ||||||
| 	state         protoimpl.MessageState `protogen:"open.v1"` | 	state         protoimpl.MessageState `protogen:"open.v1"` | ||||||
| 	Url           string                 `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"` | 	Key           string                 `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` | ||||||
| 	unknownFields protoimpl.UnknownFields | 	unknownFields protoimpl.UnknownFields | ||||||
| 	sizeCache     protoimpl.SizeCache | 	sizeCache     protoimpl.SizeCache | ||||||
| } | } | ||||||
| @@ -578,9 +586,9 @@ func (*SetAvatarRequest) Descriptor() ([]byte, []int) { | |||||||
| 	return file_account_v1_account_proto_rawDescGZIP(), []int{10} | 	return file_account_v1_account_proto_rawDescGZIP(), []int{10} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (x *SetAvatarRequest) GetUrl() string { | func (x *SetAvatarRequest) GetKey() string { | ||||||
| 	if x != nil { | 	if x != nil { | ||||||
| 		return x.Url | 		return x.Key | ||||||
| 	} | 	} | ||||||
| 	return "" | 	return "" | ||||||
| } | } | ||||||
| @@ -621,6 +629,86 @@ func (*SetAvatarResponse) Descriptor() ([]byte, []int) { | |||||||
| 	return file_account_v1_account_proto_rawDescGZIP(), []int{11} | 	return file_account_v1_account_proto_rawDescGZIP(), []int{11} | ||||||
| } | } | ||||||
|  |  | ||||||
|  | type SetDescriptionRequest struct { | ||||||
|  | 	state         protoimpl.MessageState `protogen:"open.v1"` | ||||||
|  | 	Description   string                 `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"` | ||||||
|  | 	unknownFields protoimpl.UnknownFields | ||||||
|  | 	sizeCache     protoimpl.SizeCache | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (x *SetDescriptionRequest) Reset() { | ||||||
|  | 	*x = SetDescriptionRequest{} | ||||||
|  | 	mi := &file_account_v1_account_proto_msgTypes[12] | ||||||
|  | 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
|  | 	ms.StoreMessageInfo(mi) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (x *SetDescriptionRequest) String() string { | ||||||
|  | 	return protoimpl.X.MessageStringOf(x) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (*SetDescriptionRequest) ProtoMessage() {} | ||||||
|  |  | ||||||
|  | func (x *SetDescriptionRequest) ProtoReflect() protoreflect.Message { | ||||||
|  | 	mi := &file_account_v1_account_proto_msgTypes[12] | ||||||
|  | 	if x != nil { | ||||||
|  | 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
|  | 		if ms.LoadMessageInfo() == nil { | ||||||
|  | 			ms.StoreMessageInfo(mi) | ||||||
|  | 		} | ||||||
|  | 		return ms | ||||||
|  | 	} | ||||||
|  | 	return mi.MessageOf(x) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Deprecated: Use SetDescriptionRequest.ProtoReflect.Descriptor instead. | ||||||
|  | func (*SetDescriptionRequest) Descriptor() ([]byte, []int) { | ||||||
|  | 	return file_account_v1_account_proto_rawDescGZIP(), []int{12} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (x *SetDescriptionRequest) GetDescription() string { | ||||||
|  | 	if x != nil { | ||||||
|  | 		return x.Description | ||||||
|  | 	} | ||||||
|  | 	return "" | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type SetDescriptionResponse struct { | ||||||
|  | 	state         protoimpl.MessageState `protogen:"open.v1"` | ||||||
|  | 	unknownFields protoimpl.UnknownFields | ||||||
|  | 	sizeCache     protoimpl.SizeCache | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (x *SetDescriptionResponse) Reset() { | ||||||
|  | 	*x = SetDescriptionResponse{} | ||||||
|  | 	mi := &file_account_v1_account_proto_msgTypes[13] | ||||||
|  | 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
|  | 	ms.StoreMessageInfo(mi) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (x *SetDescriptionResponse) String() string { | ||||||
|  | 	return protoimpl.X.MessageStringOf(x) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (*SetDescriptionResponse) ProtoMessage() {} | ||||||
|  |  | ||||||
|  | func (x *SetDescriptionResponse) ProtoReflect() protoreflect.Message { | ||||||
|  | 	mi := &file_account_v1_account_proto_msgTypes[13] | ||||||
|  | 	if x != nil { | ||||||
|  | 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
|  | 		if ms.LoadMessageInfo() == nil { | ||||||
|  | 			ms.StoreMessageInfo(mi) | ||||||
|  | 		} | ||||||
|  | 		return ms | ||||||
|  | 	} | ||||||
|  | 	return mi.MessageOf(x) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // Deprecated: Use SetDescriptionResponse.ProtoReflect.Descriptor instead. | ||||||
|  | func (*SetDescriptionResponse) Descriptor() ([]byte, []int) { | ||||||
|  | 	return file_account_v1_account_proto_rawDescGZIP(), []int{13} | ||||||
|  | } | ||||||
|  |  | ||||||
| type GetUserInfoRequest struct { | type GetUserInfoRequest struct { | ||||||
| 	state         protoimpl.MessageState `protogen:"open.v1"` | 	state         protoimpl.MessageState `protogen:"open.v1"` | ||||||
| 	unknownFields protoimpl.UnknownFields | 	unknownFields protoimpl.UnknownFields | ||||||
| @@ -629,7 +717,7 @@ type GetUserInfoRequest struct { | |||||||
|  |  | ||||||
| func (x *GetUserInfoRequest) Reset() { | func (x *GetUserInfoRequest) Reset() { | ||||||
| 	*x = GetUserInfoRequest{} | 	*x = GetUserInfoRequest{} | ||||||
| 	mi := &file_account_v1_account_proto_msgTypes[12] | 	mi := &file_account_v1_account_proto_msgTypes[14] | ||||||
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
| 	ms.StoreMessageInfo(mi) | 	ms.StoreMessageInfo(mi) | ||||||
| } | } | ||||||
| @@ -641,7 +729,7 @@ func (x *GetUserInfoRequest) String() string { | |||||||
| func (*GetUserInfoRequest) ProtoMessage() {} | func (*GetUserInfoRequest) ProtoMessage() {} | ||||||
|  |  | ||||||
| func (x *GetUserInfoRequest) ProtoReflect() protoreflect.Message { | func (x *GetUserInfoRequest) ProtoReflect() protoreflect.Message { | ||||||
| 	mi := &file_account_v1_account_proto_msgTypes[12] | 	mi := &file_account_v1_account_proto_msgTypes[14] | ||||||
| 	if x != nil { | 	if x != nil { | ||||||
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
| 		if ms.LoadMessageInfo() == nil { | 		if ms.LoadMessageInfo() == nil { | ||||||
| @@ -654,7 +742,7 @@ func (x *GetUserInfoRequest) ProtoReflect() protoreflect.Message { | |||||||
|  |  | ||||||
| // Deprecated: Use GetUserInfoRequest.ProtoReflect.Descriptor instead. | // Deprecated: Use GetUserInfoRequest.ProtoReflect.Descriptor instead. | ||||||
| func (*GetUserInfoRequest) Descriptor() ([]byte, []int) { | func (*GetUserInfoRequest) Descriptor() ([]byte, []int) { | ||||||
| 	return file_account_v1_account_proto_rawDescGZIP(), []int{12} | 	return file_account_v1_account_proto_rawDescGZIP(), []int{14} | ||||||
| } | } | ||||||
|  |  | ||||||
| type GetUserInfoResponse struct { | type GetUserInfoResponse struct { | ||||||
| @@ -662,16 +750,17 @@ type GetUserInfoResponse struct { | |||||||
| 	Id             string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` | 	Id             string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` | ||||||
| 	Avatar         string                 `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"` | 	Avatar         string                 `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"` | ||||||
| 	InvitationCode string                 `protobuf:"bytes,3,opt,name=invitation_code,json=invitationCode,proto3" json:"invitation_code,omitempty"` | 	InvitationCode string                 `protobuf:"bytes,3,opt,name=invitation_code,json=invitationCode,proto3" json:"invitation_code,omitempty"` | ||||||
| 	Name           string                 `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` | 	Description    string                 `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"` | ||||||
| 	Phone          string                 `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"` | 	Name           string                 `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"` | ||||||
| 	Email          string                 `protobuf:"bytes,6,opt,name=email,proto3" json:"email,omitempty"` | 	Phone          string                 `protobuf:"bytes,6,opt,name=phone,proto3" json:"phone,omitempty"` | ||||||
|  | 	Email          string                 `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"` | ||||||
| 	unknownFields  protoimpl.UnknownFields | 	unknownFields  protoimpl.UnknownFields | ||||||
| 	sizeCache      protoimpl.SizeCache | 	sizeCache      protoimpl.SizeCache | ||||||
| } | } | ||||||
|  |  | ||||||
| func (x *GetUserInfoResponse) Reset() { | func (x *GetUserInfoResponse) Reset() { | ||||||
| 	*x = GetUserInfoResponse{} | 	*x = GetUserInfoResponse{} | ||||||
| 	mi := &file_account_v1_account_proto_msgTypes[13] | 	mi := &file_account_v1_account_proto_msgTypes[15] | ||||||
| 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | 	ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
| 	ms.StoreMessageInfo(mi) | 	ms.StoreMessageInfo(mi) | ||||||
| } | } | ||||||
| @@ -683,7 +772,7 @@ func (x *GetUserInfoResponse) String() string { | |||||||
| func (*GetUserInfoResponse) ProtoMessage() {} | func (*GetUserInfoResponse) ProtoMessage() {} | ||||||
|  |  | ||||||
| func (x *GetUserInfoResponse) ProtoReflect() protoreflect.Message { | func (x *GetUserInfoResponse) ProtoReflect() protoreflect.Message { | ||||||
| 	mi := &file_account_v1_account_proto_msgTypes[13] | 	mi := &file_account_v1_account_proto_msgTypes[15] | ||||||
| 	if x != nil { | 	if x != nil { | ||||||
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) | ||||||
| 		if ms.LoadMessageInfo() == nil { | 		if ms.LoadMessageInfo() == nil { | ||||||
| @@ -696,7 +785,7 @@ func (x *GetUserInfoResponse) ProtoReflect() protoreflect.Message { | |||||||
|  |  | ||||||
| // Deprecated: Use GetUserInfoResponse.ProtoReflect.Descriptor instead. | // Deprecated: Use GetUserInfoResponse.ProtoReflect.Descriptor instead. | ||||||
| func (*GetUserInfoResponse) Descriptor() ([]byte, []int) { | func (*GetUserInfoResponse) Descriptor() ([]byte, []int) { | ||||||
| 	return file_account_v1_account_proto_rawDescGZIP(), []int{13} | 	return file_account_v1_account_proto_rawDescGZIP(), []int{15} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (x *GetUserInfoResponse) GetId() string { | func (x *GetUserInfoResponse) GetId() string { | ||||||
| @@ -720,6 +809,13 @@ func (x *GetUserInfoResponse) GetInvitationCode() string { | |||||||
| 	return "" | 	return "" | ||||||
| } | } | ||||||
|  |  | ||||||
|  | func (x *GetUserInfoResponse) GetDescription() string { | ||||||
|  | 	if x != nil { | ||||||
|  | 		return x.Description | ||||||
|  | 	} | ||||||
|  | 	return "" | ||||||
|  | } | ||||||
|  |  | ||||||
| func (x *GetUserInfoResponse) GetName() string { | func (x *GetUserInfoResponse) GetName() string { | ||||||
| 	if x != nil { | 	if x != nil { | ||||||
| 		return x.Name | 		return x.Name | ||||||
| @@ -771,34 +867,40 @@ const file_account_v1_account_proto_rawDesc = "" + | |||||||
| 	"\x0eSetNameRequest\x12\x12\n" + | 	"\x0eSetNameRequest\x12\x12\n" + | ||||||
| 	"\x04name\x18\x01 \x01(\tR\x04name\"\x11\n" + | 	"\x04name\x18\x01 \x01(\tR\x04name\"\x11\n" + | ||||||
| 	"\x0fSetNameResponse\"\x1b\n" + | 	"\x0fSetNameResponse\"\x1b\n" + | ||||||
| 	"\x19GetAvatarUploadURLRequest\".\n" + | 	"\x19GetAvatarUploadURLRequest\"@\n" + | ||||||
| 	"\x1aGetAvatarUploadURLResponse\x12\x10\n" + | 	"\x1aGetAvatarUploadURLResponse\x12\x10\n" + | ||||||
| 	"\x03url\x18\x01 \x01(\tR\x03url\"$\n" + | 	"\x03key\x18\x01 \x01(\tR\x03key\x12\x10\n" + | ||||||
|  | 	"\x03url\x18\x02 \x01(\tR\x03url\"$\n" + | ||||||
| 	"\x10SetAvatarRequest\x12\x10\n" + | 	"\x10SetAvatarRequest\x12\x10\n" + | ||||||
| 	"\x03url\x18\x01 \x01(\tR\x03url\"\x13\n" + | 	"\x03key\x18\x01 \x01(\tR\x03key\"\x13\n" + | ||||||
| 	"\x11SetAvatarResponse\"\x14\n" + | 	"\x11SetAvatarResponse\"9\n" + | ||||||
| 	"\x12GetUserInfoRequest\"\xa6\x01\n" + | 	"\x15SetDescriptionRequest\x12 \n" + | ||||||
|  | 	"\vdescription\x18\x01 \x01(\tR\vdescription\"\x18\n" + | ||||||
|  | 	"\x16SetDescriptionResponse\"\x14\n" + | ||||||
|  | 	"\x12GetUserInfoRequest\"\xc8\x01\n" + | ||||||
| 	"\x13GetUserInfoResponse\x12\x0e\n" + | 	"\x13GetUserInfoResponse\x12\x0e\n" + | ||||||
| 	"\x02id\x18\x01 \x01(\tR\x02id\x12\x16\n" + | 	"\x02id\x18\x01 \x01(\tR\x02id\x12\x16\n" + | ||||||
| 	"\x06avatar\x18\x02 \x01(\tR\x06avatar\x12'\n" + | 	"\x06avatar\x18\x02 \x01(\tR\x06avatar\x12'\n" + | ||||||
| 	"\x0finvitation_code\x18\x03 \x01(\tR\x0einvitationCode\x12\x12\n" + | 	"\x0finvitation_code\x18\x03 \x01(\tR\x0einvitationCode\x12 \n" + | ||||||
| 	"\x04name\x18\x04 \x01(\tR\x04name\x12\x14\n" + | 	"\vdescription\x18\x04 \x01(\tR\vdescription\x12\x12\n" + | ||||||
| 	"\x05phone\x18\x05 \x01(\tR\x05phone\x12\x14\n" + | 	"\x04name\x18\x05 \x01(\tR\x04name\x12\x14\n" + | ||||||
| 	"\x05email\x18\x06 \x01(\tR\x05email*\xb5\x01\n" + | 	"\x05phone\x18\x06 \x01(\tR\x05phone\x12\x14\n" + | ||||||
|  | 	"\x05email\x18\a \x01(\tR\x05email*\xb5\x01\n" + | ||||||
| 	"\x12AuthenticationType\x12#\n" + | 	"\x12AuthenticationType\x12#\n" + | ||||||
| 	"\x1fAUTHENTICATION_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n" + | 	"\x1fAUTHENTICATION_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n" + | ||||||
| 	"\x18AUTHENTICATION_TYPE_NAME\x10\x01\x12\x1d\n" + | 	"\x18AUTHENTICATION_TYPE_NAME\x10\x01\x12\x1d\n" + | ||||||
| 	"\x19AUTHENTICATION_TYPE_PHONE\x10\x02\x12\x1d\n" + | 	"\x19AUTHENTICATION_TYPE_PHONE\x10\x02\x12\x1d\n" + | ||||||
| 	"\x19AUTHENTICATION_TYPE_EMAIL\x10\x03\x12\x1e\n" + | 	"\x19AUTHENTICATION_TYPE_EMAIL\x10\x03\x12\x1e\n" + | ||||||
| 	"\x1aAUTHENTICATION_TYPE_WECHAT\x10\x042\xb7\x04\n" + | 	"\x1aAUTHENTICATION_TYPE_WECHAT\x10\x042\x90\x05\n" + | ||||||
| 	"\x0eAccountService\x12W\n" + | 	"\x0eAccountService\x12W\n" + | ||||||
| 	"\x0eSendCredential\x12!.account.v1.SendCredentialRequest\x1a\".account.v1.SendCredentialResponse\x129\n" + | 	"\x0eSendCredential\x12!.account.v1.SendCredentialRequest\x1a\".account.v1.SendCredentialResponse\x129\n" + | ||||||
| 	"\x04Auth\x12\x17.account.v1.AuthRequest\x1a\x18.account.v1.AuthResponse\x12N\n" + | 	"\x04Auth\x12\x17.account.v1.AuthRequest\x1a\x18.account.v1.AuthResponse\x12N\n" + | ||||||
| 	"\vSetPassword\x12\x1e.account.v1.SetPasswordRequest\x1a\x1f.account.v1.SetPasswordResponse\x12B\n" + | 	"\vSetPassword\x12\x1e.account.v1.SetPasswordRequest\x1a\x1f.account.v1.SetPasswordResponse\x12B\n" + | ||||||
| 	"\aSetName\x12\x1a.account.v1.SetNameRequest\x1a\x1b.account.v1.SetNameResponse\x12c\n" + | 	"\aSetName\x12\x1a.account.v1.SetNameRequest\x1a\x1b.account.v1.SetNameResponse\x12c\n" + | ||||||
| 	"\x12GetAvatarUploadURL\x12%.account.v1.GetAvatarUploadURLRequest\x1a&.account.v1.GetAvatarUploadURLResponse\x12H\n" + | 	"\x12GetAvatarUploadURL\x12%.account.v1.GetAvatarUploadURLRequest\x1a&.account.v1.GetAvatarUploadURLResponse\x12H\n" + | ||||||
| 	"\tSetAvatar\x12\x1c.account.v1.SetAvatarRequest\x1a\x1d.account.v1.SetAvatarResponse\x12N\n" + | 	"\tSetAvatar\x12\x1c.account.v1.SetAvatarRequest\x1a\x1d.account.v1.SetAvatarResponse\x12W\n" + | ||||||
| 	"\vGetUserInfo\x12\x1e.account.v1.GetUserInfoRequest\x1a\x1f.account.v1.GetUserInfoResponseB2Z0git.0yue.com/shenxianhe/sdk/account/v1;accountv1b\x06proto3" | 	"\x0eSetDescription\x12!.account.v1.SetDescriptionRequest\x1a\".account.v1.SetDescriptionResponse\x12N\n" + | ||||||
|  | 	"\vGetUserInfo\x12\x1e.account.v1.GetUserInfoRequest\x1a\x1f.account.v1.GetUserInfoResponseB7Z5git.shenxianhe.cn/shenxianhe/sdk/account/v1;accountv1b\x06proto3" | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
| 	file_account_v1_account_proto_rawDescOnce sync.Once | 	file_account_v1_account_proto_rawDescOnce sync.Once | ||||||
| @@ -813,7 +915,7 @@ func file_account_v1_account_proto_rawDescGZIP() []byte { | |||||||
| } | } | ||||||
|  |  | ||||||
| var file_account_v1_account_proto_enumTypes = make([]protoimpl.EnumInfo, 1) | var file_account_v1_account_proto_enumTypes = make([]protoimpl.EnumInfo, 1) | ||||||
| var file_account_v1_account_proto_msgTypes = make([]protoimpl.MessageInfo, 14) | var file_account_v1_account_proto_msgTypes = make([]protoimpl.MessageInfo, 16) | ||||||
| var file_account_v1_account_proto_goTypes = []any{ | var file_account_v1_account_proto_goTypes = []any{ | ||||||
| 	(AuthenticationType)(0),            // 0: account.v1.AuthenticationType | 	(AuthenticationType)(0),            // 0: account.v1.AuthenticationType | ||||||
| 	(*SendCredentialRequest)(nil),      // 1: account.v1.SendCredentialRequest | 	(*SendCredentialRequest)(nil),      // 1: account.v1.SendCredentialRequest | ||||||
| @@ -828,8 +930,10 @@ var file_account_v1_account_proto_goTypes = []any{ | |||||||
| 	(*GetAvatarUploadURLResponse)(nil), // 10: account.v1.GetAvatarUploadURLResponse | 	(*GetAvatarUploadURLResponse)(nil), // 10: account.v1.GetAvatarUploadURLResponse | ||||||
| 	(*SetAvatarRequest)(nil),           // 11: account.v1.SetAvatarRequest | 	(*SetAvatarRequest)(nil),           // 11: account.v1.SetAvatarRequest | ||||||
| 	(*SetAvatarResponse)(nil),          // 12: account.v1.SetAvatarResponse | 	(*SetAvatarResponse)(nil),          // 12: account.v1.SetAvatarResponse | ||||||
| 	(*GetUserInfoRequest)(nil),         // 13: account.v1.GetUserInfoRequest | 	(*SetDescriptionRequest)(nil),      // 13: account.v1.SetDescriptionRequest | ||||||
| 	(*GetUserInfoResponse)(nil),        // 14: account.v1.GetUserInfoResponse | 	(*SetDescriptionResponse)(nil),     // 14: account.v1.SetDescriptionResponse | ||||||
|  | 	(*GetUserInfoRequest)(nil),         // 15: account.v1.GetUserInfoRequest | ||||||
|  | 	(*GetUserInfoResponse)(nil),        // 16: account.v1.GetUserInfoResponse | ||||||
| } | } | ||||||
| var file_account_v1_account_proto_depIdxs = []int32{ | var file_account_v1_account_proto_depIdxs = []int32{ | ||||||
| 	0,  // 0: account.v1.SendCredentialRequest.auth_type:type_name -> account.v1.AuthenticationType | 	0,  // 0: account.v1.SendCredentialRequest.auth_type:type_name -> account.v1.AuthenticationType | ||||||
| @@ -841,16 +945,18 @@ var file_account_v1_account_proto_depIdxs = []int32{ | |||||||
| 	7,  // 6: account.v1.AccountService.SetName:input_type -> account.v1.SetNameRequest | 	7,  // 6: account.v1.AccountService.SetName:input_type -> account.v1.SetNameRequest | ||||||
| 	9,  // 7: account.v1.AccountService.GetAvatarUploadURL:input_type -> account.v1.GetAvatarUploadURLRequest | 	9,  // 7: account.v1.AccountService.GetAvatarUploadURL:input_type -> account.v1.GetAvatarUploadURLRequest | ||||||
| 	11, // 8: account.v1.AccountService.SetAvatar:input_type -> account.v1.SetAvatarRequest | 	11, // 8: account.v1.AccountService.SetAvatar:input_type -> account.v1.SetAvatarRequest | ||||||
| 	13, // 9: account.v1.AccountService.GetUserInfo:input_type -> account.v1.GetUserInfoRequest | 	13, // 9: account.v1.AccountService.SetDescription:input_type -> account.v1.SetDescriptionRequest | ||||||
| 	2,  // 10: account.v1.AccountService.SendCredential:output_type -> account.v1.SendCredentialResponse | 	15, // 10: account.v1.AccountService.GetUserInfo:input_type -> account.v1.GetUserInfoRequest | ||||||
| 	4,  // 11: account.v1.AccountService.Auth:output_type -> account.v1.AuthResponse | 	2,  // 11: account.v1.AccountService.SendCredential:output_type -> account.v1.SendCredentialResponse | ||||||
| 	6,  // 12: account.v1.AccountService.SetPassword:output_type -> account.v1.SetPasswordResponse | 	4,  // 12: account.v1.AccountService.Auth:output_type -> account.v1.AuthResponse | ||||||
| 	8,  // 13: account.v1.AccountService.SetName:output_type -> account.v1.SetNameResponse | 	6,  // 13: account.v1.AccountService.SetPassword:output_type -> account.v1.SetPasswordResponse | ||||||
| 	10, // 14: account.v1.AccountService.GetAvatarUploadURL:output_type -> account.v1.GetAvatarUploadURLResponse | 	8,  // 14: account.v1.AccountService.SetName:output_type -> account.v1.SetNameResponse | ||||||
| 	12, // 15: account.v1.AccountService.SetAvatar:output_type -> account.v1.SetAvatarResponse | 	10, // 15: account.v1.AccountService.GetAvatarUploadURL:output_type -> account.v1.GetAvatarUploadURLResponse | ||||||
| 	14, // 16: account.v1.AccountService.GetUserInfo:output_type -> account.v1.GetUserInfoResponse | 	12, // 16: account.v1.AccountService.SetAvatar:output_type -> account.v1.SetAvatarResponse | ||||||
| 	10, // [10:17] is the sub-list for method output_type | 	14, // 17: account.v1.AccountService.SetDescription:output_type -> account.v1.SetDescriptionResponse | ||||||
| 	3,  // [3:10] is the sub-list for method input_type | 	16, // 18: account.v1.AccountService.GetUserInfo:output_type -> account.v1.GetUserInfoResponse | ||||||
|  | 	11, // [11:19] is the sub-list for method output_type | ||||||
|  | 	3,  // [3:11] is the sub-list for method input_type | ||||||
| 	3,  // [3:3] is the sub-list for extension type_name | 	3,  // [3:3] is the sub-list for extension type_name | ||||||
| 	3,  // [3:3] is the sub-list for extension extendee | 	3,  // [3:3] is the sub-list for extension extendee | ||||||
| 	0,  // [0:3] is the sub-list for field type_name | 	0,  // [0:3] is the sub-list for field type_name | ||||||
| @@ -867,7 +973,7 @@ func file_account_v1_account_proto_init() { | |||||||
| 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(), | 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(), | ||||||
| 			RawDescriptor: unsafe.Slice(unsafe.StringData(file_account_v1_account_proto_rawDesc), len(file_account_v1_account_proto_rawDesc)), | 			RawDescriptor: unsafe.Slice(unsafe.StringData(file_account_v1_account_proto_rawDesc), len(file_account_v1_account_proto_rawDesc)), | ||||||
| 			NumEnums:      1, | 			NumEnums:      1, | ||||||
| 			NumMessages:   14, | 			NumMessages:   16, | ||||||
| 			NumExtensions: 0, | 			NumExtensions: 0, | ||||||
| 			NumServices:   1, | 			NumServices:   1, | ||||||
| 		}, | 		}, | ||||||
|   | |||||||
| @@ -8,7 +8,7 @@ import ( | |||||||
| 	connect "connectrpc.com/connect" | 	connect "connectrpc.com/connect" | ||||||
| 	context "context" | 	context "context" | ||||||
| 	errors "errors" | 	errors "errors" | ||||||
| 	v1 "git.0yue.com/shenxianhe/sdk/account/v1" | 	v1 "git.shenxianhe.cn/shenxianhe/sdk/account/v1" | ||||||
| 	http "net/http" | 	http "net/http" | ||||||
| 	strings "strings" | 	strings "strings" | ||||||
| ) | ) | ||||||
| @@ -49,6 +49,9 @@ const ( | |||||||
| 	// AccountServiceSetAvatarProcedure is the fully-qualified name of the AccountService's SetAvatar | 	// AccountServiceSetAvatarProcedure is the fully-qualified name of the AccountService's SetAvatar | ||||||
| 	// RPC. | 	// RPC. | ||||||
| 	AccountServiceSetAvatarProcedure = "/account.v1.AccountService/SetAvatar" | 	AccountServiceSetAvatarProcedure = "/account.v1.AccountService/SetAvatar" | ||||||
|  | 	// AccountServiceSetDescriptionProcedure is the fully-qualified name of the AccountService's | ||||||
|  | 	// SetDescription RPC. | ||||||
|  | 	AccountServiceSetDescriptionProcedure = "/account.v1.AccountService/SetDescription" | ||||||
| 	// AccountServiceGetUserInfoProcedure is the fully-qualified name of the AccountService's | 	// AccountServiceGetUserInfoProcedure is the fully-qualified name of the AccountService's | ||||||
| 	// GetUserInfo RPC. | 	// GetUserInfo RPC. | ||||||
| 	AccountServiceGetUserInfoProcedure = "/account.v1.AccountService/GetUserInfo" | 	AccountServiceGetUserInfoProcedure = "/account.v1.AccountService/GetUserInfo" | ||||||
| @@ -62,6 +65,7 @@ type AccountServiceClient interface { | |||||||
| 	SetName(context.Context, *connect.Request[v1.SetNameRequest]) (*connect.Response[v1.SetNameResponse], error) | 	SetName(context.Context, *connect.Request[v1.SetNameRequest]) (*connect.Response[v1.SetNameResponse], error) | ||||||
| 	GetAvatarUploadURL(context.Context, *connect.Request[v1.GetAvatarUploadURLRequest]) (*connect.Response[v1.GetAvatarUploadURLResponse], error) | 	GetAvatarUploadURL(context.Context, *connect.Request[v1.GetAvatarUploadURLRequest]) (*connect.Response[v1.GetAvatarUploadURLResponse], error) | ||||||
| 	SetAvatar(context.Context, *connect.Request[v1.SetAvatarRequest]) (*connect.Response[v1.SetAvatarResponse], error) | 	SetAvatar(context.Context, *connect.Request[v1.SetAvatarRequest]) (*connect.Response[v1.SetAvatarResponse], error) | ||||||
|  | 	SetDescription(context.Context, *connect.Request[v1.SetDescriptionRequest]) (*connect.Response[v1.SetDescriptionResponse], error) | ||||||
| 	GetUserInfo(context.Context, *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) | 	GetUserInfo(context.Context, *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -112,6 +116,12 @@ func NewAccountServiceClient(httpClient connect.HTTPClient, baseURL string, opts | |||||||
| 			connect.WithSchema(accountServiceMethods.ByName("SetAvatar")), | 			connect.WithSchema(accountServiceMethods.ByName("SetAvatar")), | ||||||
| 			connect.WithClientOptions(opts...), | 			connect.WithClientOptions(opts...), | ||||||
| 		), | 		), | ||||||
|  | 		setDescription: connect.NewClient[v1.SetDescriptionRequest, v1.SetDescriptionResponse]( | ||||||
|  | 			httpClient, | ||||||
|  | 			baseURL+AccountServiceSetDescriptionProcedure, | ||||||
|  | 			connect.WithSchema(accountServiceMethods.ByName("SetDescription")), | ||||||
|  | 			connect.WithClientOptions(opts...), | ||||||
|  | 		), | ||||||
| 		getUserInfo: connect.NewClient[v1.GetUserInfoRequest, v1.GetUserInfoResponse]( | 		getUserInfo: connect.NewClient[v1.GetUserInfoRequest, v1.GetUserInfoResponse]( | ||||||
| 			httpClient, | 			httpClient, | ||||||
| 			baseURL+AccountServiceGetUserInfoProcedure, | 			baseURL+AccountServiceGetUserInfoProcedure, | ||||||
| @@ -129,6 +139,7 @@ type accountServiceClient struct { | |||||||
| 	setName            *connect.Client[v1.SetNameRequest, v1.SetNameResponse] | 	setName            *connect.Client[v1.SetNameRequest, v1.SetNameResponse] | ||||||
| 	getAvatarUploadURL *connect.Client[v1.GetAvatarUploadURLRequest, v1.GetAvatarUploadURLResponse] | 	getAvatarUploadURL *connect.Client[v1.GetAvatarUploadURLRequest, v1.GetAvatarUploadURLResponse] | ||||||
| 	setAvatar          *connect.Client[v1.SetAvatarRequest, v1.SetAvatarResponse] | 	setAvatar          *connect.Client[v1.SetAvatarRequest, v1.SetAvatarResponse] | ||||||
|  | 	setDescription     *connect.Client[v1.SetDescriptionRequest, v1.SetDescriptionResponse] | ||||||
| 	getUserInfo        *connect.Client[v1.GetUserInfoRequest, v1.GetUserInfoResponse] | 	getUserInfo        *connect.Client[v1.GetUserInfoRequest, v1.GetUserInfoResponse] | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -162,6 +173,11 @@ func (c *accountServiceClient) SetAvatar(ctx context.Context, req *connect.Reque | |||||||
| 	return c.setAvatar.CallUnary(ctx, req) | 	return c.setAvatar.CallUnary(ctx, req) | ||||||
| } | } | ||||||
|  |  | ||||||
|  | // SetDescription calls account.v1.AccountService.SetDescription. | ||||||
|  | func (c *accountServiceClient) SetDescription(ctx context.Context, req *connect.Request[v1.SetDescriptionRequest]) (*connect.Response[v1.SetDescriptionResponse], error) { | ||||||
|  | 	return c.setDescription.CallUnary(ctx, req) | ||||||
|  | } | ||||||
|  |  | ||||||
| // GetUserInfo calls account.v1.AccountService.GetUserInfo. | // GetUserInfo calls account.v1.AccountService.GetUserInfo. | ||||||
| func (c *accountServiceClient) GetUserInfo(ctx context.Context, req *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) { | func (c *accountServiceClient) GetUserInfo(ctx context.Context, req *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) { | ||||||
| 	return c.getUserInfo.CallUnary(ctx, req) | 	return c.getUserInfo.CallUnary(ctx, req) | ||||||
| @@ -175,6 +191,7 @@ type AccountServiceHandler interface { | |||||||
| 	SetName(context.Context, *connect.Request[v1.SetNameRequest]) (*connect.Response[v1.SetNameResponse], error) | 	SetName(context.Context, *connect.Request[v1.SetNameRequest]) (*connect.Response[v1.SetNameResponse], error) | ||||||
| 	GetAvatarUploadURL(context.Context, *connect.Request[v1.GetAvatarUploadURLRequest]) (*connect.Response[v1.GetAvatarUploadURLResponse], error) | 	GetAvatarUploadURL(context.Context, *connect.Request[v1.GetAvatarUploadURLRequest]) (*connect.Response[v1.GetAvatarUploadURLResponse], error) | ||||||
| 	SetAvatar(context.Context, *connect.Request[v1.SetAvatarRequest]) (*connect.Response[v1.SetAvatarResponse], error) | 	SetAvatar(context.Context, *connect.Request[v1.SetAvatarRequest]) (*connect.Response[v1.SetAvatarResponse], error) | ||||||
|  | 	SetDescription(context.Context, *connect.Request[v1.SetDescriptionRequest]) (*connect.Response[v1.SetDescriptionResponse], error) | ||||||
| 	GetUserInfo(context.Context, *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) | 	GetUserInfo(context.Context, *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -221,6 +238,12 @@ func NewAccountServiceHandler(svc AccountServiceHandler, opts ...connect.Handler | |||||||
| 		connect.WithSchema(accountServiceMethods.ByName("SetAvatar")), | 		connect.WithSchema(accountServiceMethods.ByName("SetAvatar")), | ||||||
| 		connect.WithHandlerOptions(opts...), | 		connect.WithHandlerOptions(opts...), | ||||||
| 	) | 	) | ||||||
|  | 	accountServiceSetDescriptionHandler := connect.NewUnaryHandler( | ||||||
|  | 		AccountServiceSetDescriptionProcedure, | ||||||
|  | 		svc.SetDescription, | ||||||
|  | 		connect.WithSchema(accountServiceMethods.ByName("SetDescription")), | ||||||
|  | 		connect.WithHandlerOptions(opts...), | ||||||
|  | 	) | ||||||
| 	accountServiceGetUserInfoHandler := connect.NewUnaryHandler( | 	accountServiceGetUserInfoHandler := connect.NewUnaryHandler( | ||||||
| 		AccountServiceGetUserInfoProcedure, | 		AccountServiceGetUserInfoProcedure, | ||||||
| 		svc.GetUserInfo, | 		svc.GetUserInfo, | ||||||
| @@ -241,6 +264,8 @@ func NewAccountServiceHandler(svc AccountServiceHandler, opts ...connect.Handler | |||||||
| 			accountServiceGetAvatarUploadURLHandler.ServeHTTP(w, r) | 			accountServiceGetAvatarUploadURLHandler.ServeHTTP(w, r) | ||||||
| 		case AccountServiceSetAvatarProcedure: | 		case AccountServiceSetAvatarProcedure: | ||||||
| 			accountServiceSetAvatarHandler.ServeHTTP(w, r) | 			accountServiceSetAvatarHandler.ServeHTTP(w, r) | ||||||
|  | 		case AccountServiceSetDescriptionProcedure: | ||||||
|  | 			accountServiceSetDescriptionHandler.ServeHTTP(w, r) | ||||||
| 		case AccountServiceGetUserInfoProcedure: | 		case AccountServiceGetUserInfoProcedure: | ||||||
| 			accountServiceGetUserInfoHandler.ServeHTTP(w, r) | 			accountServiceGetUserInfoHandler.ServeHTTP(w, r) | ||||||
| 		default: | 		default: | ||||||
| @@ -276,6 +301,10 @@ func (UnimplementedAccountServiceHandler) SetAvatar(context.Context, *connect.Re | |||||||
| 	return nil, connect.NewError(connect.CodeUnimplemented, errors.New("account.v1.AccountService.SetAvatar is not implemented")) | 	return nil, connect.NewError(connect.CodeUnimplemented, errors.New("account.v1.AccountService.SetAvatar is not implemented")) | ||||||
| } | } | ||||||
|  |  | ||||||
|  | func (UnimplementedAccountServiceHandler) SetDescription(context.Context, *connect.Request[v1.SetDescriptionRequest]) (*connect.Response[v1.SetDescriptionResponse], error) { | ||||||
|  | 	return nil, connect.NewError(connect.CodeUnimplemented, errors.New("account.v1.AccountService.SetDescription is not implemented")) | ||||||
|  | } | ||||||
|  |  | ||||||
| func (UnimplementedAccountServiceHandler) GetUserInfo(context.Context, *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) { | func (UnimplementedAccountServiceHandler) GetUserInfo(context.Context, *connect.Request[v1.GetUserInfoRequest]) (*connect.Response[v1.GetUserInfoResponse], error) { | ||||||
| 	return nil, connect.NewError(connect.CodeUnimplemented, errors.New("account.v1.AccountService.GetUserInfo is not implemented")) | 	return nil, connect.NewError(connect.CodeUnimplemented, errors.New("account.v1.AccountService.GetUserInfo is not implemented")) | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										4
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								go.mod
									
									
									
									
									
								
							| @@ -1,8 +1,8 @@ | |||||||
| module git.0yue.com/shenxianhe/sdk | module git.shenxianhe.cn/shenxianhe/sdk | ||||||
|  |  | ||||||
| go 1.25.0 | go 1.25.0 | ||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	connectrpc.com/connect v1.18.1 | 	connectrpc.com/connect v1.18.1 | ||||||
| 	google.golang.org/protobuf v1.36.7 | 	google.golang.org/protobuf v1.36.8 | ||||||
| ) | ) | ||||||
|   | |||||||
							
								
								
									
										4
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								go.sum
									
									
									
									
									
								
							| @@ -6,5 +6,5 @@ golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= | |||||||
| golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= | golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= | ||||||
| golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= | golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= | ||||||
| golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= | golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= | ||||||
| google.golang.org/protobuf v1.36.7 h1:IgrO7UwFQGJdRNXH/sQux4R1Dj1WAKcLElzeeRaXV2A= | google.golang.org/protobuf v1.36.8 h1:xHScyCOEuuwZEc6UtSOvPbAT4zRh0xcNRYekJwfqyMc= | ||||||
| google.golang.org/protobuf v1.36.7/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY= | google.golang.org/protobuf v1.36.8/go.mod h1:fuxRtAxBytpl4zzqUh6/eyUujkJdNiuEkXntxiD/uRU= | ||||||
|   | |||||||
| @@ -460,7 +460,7 @@ const file_notification_v1_notification_proto_rawDesc = "" + | |||||||
| 	"\x18SMS_SIGN_STATUS_CANCELED\x10\x042\xbd\x01\n" + | 	"\x18SMS_SIGN_STATUS_CANCELED\x10\x042\xbd\x01\n" + | ||||||
| 	"\x13NotificationService\x12X\n" + | 	"\x13NotificationService\x12X\n" + | ||||||
| 	"\vListSMSSign\x12#.notification.v1.ListSMSSignRequest\x1a$.notification.v1.ListSMSSignResponse\x12L\n" + | 	"\vListSMSSign\x12#.notification.v1.ListSMSSignRequest\x1a$.notification.v1.ListSMSSignResponse\x12L\n" + | ||||||
| 	"\aSendSMS\x12\x1f.notification.v1.SendSMSRequest\x1a .notification.v1.SendSMSResponseB<Z:git.0yue.com/shenxianhe/sdk/notification/v1;notificationv1b\x06proto3" | 	"\aSendSMS\x12\x1f.notification.v1.SendSMSRequest\x1a .notification.v1.SendSMSResponseBAZ?git.shenxianhe.cn/shenxianhe/sdk/notification/v1;notificationv1b\x06proto3" | ||||||
|  |  | ||||||
| var ( | var ( | ||||||
| 	file_notification_v1_notification_proto_rawDescOnce sync.Once | 	file_notification_v1_notification_proto_rawDescOnce sync.Once | ||||||
|   | |||||||
| @@ -8,7 +8,7 @@ import ( | |||||||
| 	connect "connectrpc.com/connect" | 	connect "connectrpc.com/connect" | ||||||
| 	context "context" | 	context "context" | ||||||
| 	errors "errors" | 	errors "errors" | ||||||
| 	v1 "git.0yue.com/shenxianhe/sdk/notification/v1" | 	v1 "git.shenxianhe.cn/shenxianhe/sdk/notification/v1" | ||||||
| 	http "net/http" | 	http "net/http" | ||||||
| 	strings "strings" | 	strings "strings" | ||||||
| ) | ) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user