From c1b130c5c61dcb4167892e266321a30e8cc95d77 Mon Sep 17 00:00:00 2001 From: Vernon Keenan Date: Sun, 24 Jan 2021 14:07:37 -0800 Subject: [PATCH] more params --- app/config.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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