more params

v0.1.29 v0.1.29
Vernon Keenan 2021-01-24 14:07:37 -08:00
parent f82e4ddac4
commit c1b130c5c6
1 changed files with 20 additions and 0 deletions

View File

@ -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