txim/api/profile.go

14 lines
269 B
Go
Raw Normal View History

2022-01-11 10:14:11 +08:00
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
}