2022-03-16 18:02:26 +08:00
|
|
|
package msg
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2023-04-24 11:06:58 +08:00
|
|
|
|
2023-03-16 10:46:06 +08:00
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/msg"
|
2022-03-16 18:02:26 +08:00
|
|
|
)
|
|
|
|
|
|
2023-05-25 11:04:41 +08:00
|
|
|
func (m *msgServer) ClearConversationsMsg(ctx context.Context, req *msg.ClearConversationsMsgReq) (*msg.ClearConversationsMsgResp, error) {
|
|
|
|
|
return &msg.ClearConversationsMsgResp{}, nil
|
2022-03-16 18:02:26 +08:00
|
|
|
}
|
2023-02-13 11:24:13 +08:00
|
|
|
|
2023-05-25 11:09:10 +08:00
|
|
|
func (m *msgServer) UserClearAllMsg(ctx context.Context, req *msg.UserClearAllMsgReq) (*msg.UserClearAllMsgResp, error) {
|
|
|
|
|
return &msg.UserClearAllMsgResp{}, nil
|
2023-01-11 16:23:16 +08:00
|
|
|
}
|
2023-02-10 22:10:37 +08:00
|
|
|
|
2023-05-25 11:04:41 +08:00
|
|
|
func (m *msgServer) DeleteMsgs(ctx context.Context, req *msg.DeleteMsgsReq) (*msg.DeleteMsgsResp, error) {
|
|
|
|
|
return &msg.DeleteMsgsResp{}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *msgServer) DeleteMsgPhysicalBySeq(ctx context.Context, req *msg.DeleteMsgPhysicalBySeqReq) (*msg.DeleteMsgPhysicalBySeqResp, error) {
|
|
|
|
|
return &msg.DeleteMsgPhysicalBySeqResp{}, nil
|
2023-02-10 22:10:37 +08:00
|
|
|
}
|