go_dreamfactory/modules/friend/api_del.go
2022-06-15 19:25:55 +08:00

16 lines
354 B
Go

package friend
import (
"go_dreamfactory/comm"
"go_dreamfactory/pb"
)
func (this *ApiComp) Del_Check(session comm.IUserSession, req *pb.FriendDelReq) (chk map[string]interface{}, code pb.ErrorCode) {
return
}
//删除好友
func (this *ApiComp) Del(session comm.IUserSession, chk map[string]interface{}, req *pb.FriendDelReq) error {
return nil
}