group api

This commit is contained in:
withchao
2023-06-08 19:18:05 +08:00
parent b536f489a4
commit 2e876dd58b
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -33,11 +33,11 @@ func (o *Group) client(ctx context.Context) (group.GroupClient, error) {
return group.NewGroupClient(c), nil
}
func (o *Group) NewCreateGroup(c *gin.Context) {
func (o *Group) CreateGroup(c *gin.Context) {
a2r.Call(group.GroupClient.CreateGroup, o.client, c)
}
func (o *Group) NewSetGroupInfo(c *gin.Context) {
func (o *Group) SetGroupInfo(c *gin.Context) {
a2r.Call(group.GroupClient.SetGroupInfo, o.client, c)
}