one-api/controller/group.go
cktsun1031 fa008e7196 Refactor and optimize code: streamline error
handling, remove redundant return statements,
correct gorm tag syntax, and improve type
assertions in relay.go
2023-11-06 16:04:13 +08:00

21 lines
346 B
Go

package controller
import (
"net/http"
"one-api/common"
"github.com/gin-gonic/gin"
)
func GetGroups(c *gin.Context) {
groupNames := make([]string, 0)
for groupName := range common.GroupRatio {
groupNames = append(groupNames, groupName)
}
c.JSON(http.StatusOK, gin.H{
"success": true,
"message": "",
"data": groupNames,
})
}