This commit is contained in:
2025-02-03 07:50:50 +07:00
parent 7358c05baa
commit d199595ee1
3 changed files with 37 additions and 10 deletions

View File

@@ -25,11 +25,11 @@ type service struct {
}
var (
hostSimrs = os.Getenv("POSTGRE_DB_HOST")
userNameSimrs = os.Getenv("POSTGRE_DB_USER")
passwordSimrs = os.Getenv("POSTGRE_DB_PASS")
dbNameSimrs = os.Getenv("POSTGRE_DB_NAME")
portSimrs = os.Getenv("POSTGRE_DB_PORT")
hostSimrs = os.Getenv("SIMRS_STAG_HOST")
userNameSimrs = os.Getenv("SIMRS_STAG_USER")
passwordSimrs = os.Getenv("SIMRS_STAG_PASS")
dbNameSimrs = os.Getenv("SIMRS_STAG_NAME")
portSimrs = os.Getenv("SIMRS_STAG_PORT")
dbInstance *service
)