X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fconfig%2Fconf.go;h=f0e2a6338b057e1ccf84c1ebe0fc2a9b4d5d7afd;hb=HEAD;hp=b241aa0c52f24e116d04ceb0d8337b732c2a8280;hpb=f8dc81bc7dd198da9fcb17bef2e164dc71c39e49;p=ric-plt%2Fricdms.git diff --git a/pkg/config/conf.go b/pkg/config/conf.go index b241aa0..f0e2a63 100644 --- a/pkg/config/conf.go +++ b/pkg/config/conf.go @@ -28,11 +28,15 @@ import ( ) type Conf struct { - LogLevel string `yaml:"log-level"` - OnboardURL string `yaml:"onborder-url"` - GetChartsURL string `yaml:"getCharts-url"` - DownloadChartURLFormat string `yaml:"download-charts-url-format"` - MockServer string `yaml:"mock-server"` + LogLevel string `yaml:"log-level"` + OnboardURL string `yaml:"onborder-url"` + GetChartsURL string `yaml:"getCharts-url"` + GetChartsByxAppNameURL string `yaml:"getCharts-by-name-url"` + GetChartsByNameAndVersionURL string `yaml:"getCharts-by-name-and-version-url"` + DownloadChartURLFormat string `yaml:"download-charts-url-format"` + MockServer string `yaml:"mock-server"` + GETxAPPHealthURL string `yaml:"getXappHealth-url"` + CustomOnboardURL string `yaml:"customOnboard-url"` } func ReadConfiguration(configFile string) (c *Conf, err error) {