parent
f82e4ddac4
commit
c1b130c5c6
|
@ -147,6 +147,26 @@ func GetServiceAccount(name string) *ServiceAccount {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetDBMSHost returns the parameter
|
||||||
|
func GetDBMSHost() string {
|
||||||
|
return config.DBMSHost
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetDBMSName returns the parameter
|
||||||
|
func GetDBMSName() string {
|
||||||
|
return config.DBMSName
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetDBMSPassword returns the parameter
|
||||||
|
func GetDBMSPassword() string {
|
||||||
|
return config.DBMSPassword
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetDBMSUsername returns the parameter
|
||||||
|
func GetDBMSUsername() string {
|
||||||
|
return config.DBMSUsername
|
||||||
|
}
|
||||||
|
|
||||||
// GetAppName retrieves the Taxnexus App Name for this microservice
|
// GetAppName retrieves the Taxnexus App Name for this microservice
|
||||||
func GetAppName() string {
|
func GetAppName() string {
|
||||||
return config.AppName
|
return config.AppName
|
||||||
|
|
Loading…
Reference in New Issue