package apis type ContactAddRequest struct { SelfId int64 `json:"self_id"` SelfName string `json:"self_name"` Addr string `json:"addr"` Phone string `json:"phone"` Email string `json:"email"` Id int64 `json:"id"` } type ContactAddReply struct { } type ContactInfoRequest struct { } type ContactInfoReply struct { Id int64 `json:"id"` Addr string `json:"addr"` Phone string `json:"phone"` Email string `json:"email"` } type ContactDelRequest struct { SelfId int64 `json:"self_id"` SelfName string `json:"self_name"` Id int64 `json:"id"` } type ContactDelReply struct { }