This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package show
import (
"github.com/gin-gonic/gin"
"recook/configs"
"recook/internal/back"
)
func GetShow(c *gin.Context) {
back.Suc(c, "", gin.H{
"show": configs.ConfigShowSwitch, //1全部显示 0,苹果隐藏
})
}