mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
838 B
33 lines
838 B
package v1
|
|
|
|
import (
|
|
. "github.com/alimy/mir/v3"
|
|
. "github.com/alimy/mir/v3/engine"
|
|
"github.com/rocboss/paopao-ce/internal/model/web"
|
|
)
|
|
|
|
func init() {
|
|
AddEntry(new(Friendship))
|
|
}
|
|
|
|
// Friendship 好友模式 服务
|
|
type Friendship struct {
|
|
Chain Chain `mir:"-"`
|
|
Group Group `mir:"v1"`
|
|
|
|
// RequestingFriend 请求添加朋友
|
|
RequestingFriend func(Post, web.RequestingFriendReq) `mir:"/friend/requesting"`
|
|
|
|
// AddFriend 同意添加好友
|
|
AddFriend func(Post, web.AddFriendReq) `mir:"/friend/add"`
|
|
|
|
// RejectFriend 拒绝添加好友
|
|
RejectFriend func(Post, web.RejectFriendReq) `mir:"/friend/reject"`
|
|
|
|
// DeleteFriend 删除好友
|
|
DeleteFriend func(Post, web.DeleteFriendReq) `mir:"/friend/delete"`
|
|
|
|
// GetContacts 获取好友列表
|
|
GetContacts func(Get, web.GetContactsReq) web.GetContactsResp `mir:"/user/contacts"`
|
|
}
|