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

13 lines
217 B
Go

package friend
import (
"context"
"go_dreamfactory/comm"
"go_dreamfactory/pb"
)
//删除好友
func (this *ApiComp) Del(ctx context.Context, session comm.IUserSession, req *pb.FriendDelReq) error {
return nil
}