X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fxapp%2Fconfig.go;h=1f90a1acd3c903c9869ca79d29e729e2d373867b;hb=refs%2Fchanges%2F95%2F895%2F1;hp=647b3ebad4856b648495054f119e7fca28884580;hpb=775722c877ef7110cdb4e992f5c216e0e03775c4;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/config.go b/pkg/xapp/config.go index 647b3eb..1f90a1a 100755 --- a/pkg/xapp/config.go +++ b/pkg/xapp/config.go @@ -80,3 +80,11 @@ func (*Configurator) GetString(key string) string { func (*Configurator) GetInt(key string) int { return viper.GetInt(key) } + +func (*Configurator) GetUint32(key string) uint32 { + return viper.GetUint32(key) +} + +func (*Configurator) GetBool(key string) bool { + return viper.GetBool(key) +}