💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ## 定义一个结构体 ``` type configType struct { Enabled bool `json:"enabled"` Buffer int `json:"buffer"` AppKey string `json:"appkey"` MasterSecret string `json:"masterSecret"` ApiUrl string `json:"apiUrl"` Platform []string `json:"Platform"` } ``` ## struct 转json ``` ``` ## json 转 struct ``` pushConfig := "" if err := json.Unmarshal([]byte(jPushConfig), &config); err !=nil { logger.Logger.Error("jPushConfig json parse error") return nil } ```