txim/api/profile.go

14 lines
269 B
Go

package api
import (
"gitee.ltd/lxh/txim/api/param"
"gitee.ltd/lxh/txim/common"
)
// ProfileSet 资料设置
func ProfileSet(r *param.ProfileSetReq) (*param.ProfileSetRes, error) {
a := param.ProfileSetRes{}
err := Api(common.ProfileSet, r, &a)
return &a, err
}