Add support for YAML and JSON config files
This commit is contained in:
parent
2c89063d13
commit
03272881c6
15
main.go
15
main.go
@ -23,9 +23,11 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/naoina/toml"
|
"github.com/naoina/toml"
|
||||||
|
"gopkg.in/yaml.v2"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
@ -47,9 +49,22 @@ func parse(filename string) (*config, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
conf := &config{}
|
conf := &config{}
|
||||||
|
switch path.Ext(filename) {
|
||||||
|
case "json":
|
||||||
|
if err := json.Unmarshal(bytes, &conf); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
case "toml":
|
||||||
if err := toml.Unmarshal(bytes, &conf); err != nil {
|
if err := toml.Unmarshal(bytes, &conf); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
case "yaml":
|
||||||
|
if err := yaml.Unmarshal(bytes, &conf); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("Unsupported configuration file format")
|
||||||
|
}
|
||||||
|
|
||||||
return conf, nil
|
return conf, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user