diff --git a/app/config.go b/app/config.go index fa629bf..f835fe8 100644 --- a/app/config.go +++ b/app/config.go @@ -147,6 +147,26 @@ func GetServiceAccount(name string) *ServiceAccount { 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 func GetAppName() string { return config.AppName