You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
518 B
25 lines
518 B
package apollo
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/apolloconfig/agollo/v4/constant"
|
|
"github.com/apolloconfig/agollo/v4/extension"
|
|
)
|
|
|
|
type jsonExtParser struct{}
|
|
|
|
func (j jsonExtParser) Parse(configContent interface{}) (map[string]interface{}, error) {
|
|
v, ok := configContent.(string)
|
|
if !ok {
|
|
return nil, nil
|
|
}
|
|
out := make(map[string]interface{}, 4)
|
|
err := json.Unmarshal([]byte(v), &out)
|
|
return out, err
|
|
}
|
|
|
|
func init() {
|
|
// add json format
|
|
extension.AddFormatParser(constant.JSON, &jsonExtParser{})
|
|
}
|
|
|