json配置为
{
"items": [
{
"url": "https://xxx.com",
"name": "xxx"
}
]
}
对应解析为
import "encoding/json"
type CfgItem struct {
Url string
Name string
Check bool
}
type Cfg struct[......]
json配置为
{
"items": [
{
"url": "https://xxx.com",
"name": "xxx"
}
]
}
对应解析为
import "encoding/json"
type CfgItem struct {
Url string
Name string
Check bool
}
type Cfg struct[......]