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.
 
 
 
 
 
 

13 lines
324 B

package pack
import "github.com/TremblingV5/DouTok/kitex_gen/favorite"
func PackIsFavoriteResp(code int32, msg string, list map[int64]bool) (resp *favorite.DouyinIsFavoriteResponse, err error) {
resp = &favorite.DouyinIsFavoriteResponse{
StatusCode: code,
StatusMsg: msg,
Result: list,
}
return resp, nil
}