diff options
author | Michael Hunteman <michael@huntm.net> | 2024-09-29 15:26:19 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-09-29 15:26:19 -0700 |
commit | aa8178efceda26110fecd6a605887a1e1573d8c0 (patch) | |
tree | 2b82ecae7c0a60f010f7df9fab5b071d613ba3bd /server/cmd | |
parent | 0154a152dd6d3606c9131f3186a9175ee5853185 (diff) |
Update database connection
Diffstat (limited to 'server/cmd')
-rw-r--r-- | server/cmd/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/cmd/main.go b/server/cmd/main.go index a180cc4..b57ee30 100644 --- a/server/cmd/main.go +++ b/server/cmd/main.go @@ -15,11 +15,11 @@ import ( ) var ( - user = os.Getenv("USER") + user = "postgres" password = os.Getenv("PASS") host = "localhost" port = "5432" - database = "postgres" + database = "wedding" ) func main() { |