A config parser for the KrakenD framework
=========================================================================
THIS PACKAGE HAS BEEN DISCONTINUED, SEE KRAKEND-KOANF FOR ALTERNATIVES
=========================================================================
Import the package
import "github.com/krakend/krakend-viper"
And you are ready for building a parser and get the config from any format supported by viper
parser := viper.New()
serviceConfig, err := parser.Parse(*configFile)
if err != nil {
log.Fatal("ERROR:", err.Error())
}