go_dreamfactory/modules/friend/api_del.go
2022-06-28 15:14:08 +08:00

16 lines
360 B
Go

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