| 123456789101112131415161718192021222324 |
- package controller
- import (
- "net/http"
- "one-api/setting/ratio_setting"
- "github.com/gin-gonic/gin"
- )
- func GetRatioConfig(c *gin.Context) {
- if !ratio_setting.IsExposeRatioEnabled() {
- c.JSON(http.StatusForbidden, gin.H{
- "success": false,
- "message": "倍率配置接口未启用",
- })
- return
- }
- c.JSON(http.StatusOK, gin.H{
- "success": true,
- "message": "",
- "data": ratio_setting.GetExposedData(),
- })
- }
|