15 lines
323 B
Go
15 lines
323 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"gitee.ltd/lxh/txim/api/param"
|
||
|
"gitee.ltd/lxh/txim/common"
|
||
|
)
|
||
|
|
||
|
// GroupCreate 建群
|
||
|
//https://cloud.tencent.com/document/product/269/1615
|
||
|
func GroupCreate(r *param.GroupCreateReq) (*param.GroupCreateRes, error) {
|
||
|
a := param.GroupCreateRes{}
|
||
|
err := Api(common.GroupCreate, r, &a)
|
||
|
return &a, err
|
||
|
}
|