ParseConfigSetJSON include ConfigSet json file
(configFile string)
| 30 | |
| 31 | // ParseConfigSetJSON include ConfigSet json file |
| 32 | func ParseConfigSetJSON(configFile string) (core.ConcurrenceMap, error) { |
| 33 | return parseConfigSetFile(configFile, ConfigType_JSON) |
| 34 | } |
| 35 | |
| 36 | // ParseConfigSetYaml include ConfigSet yaml file |
| 37 | func ParseConfigSetYaml(configFile string) (core.ConcurrenceMap, error) { |
no test coverage detected