diff --git a/backend/api/blogs.go b/backend/api/blogs.go index 2b1ec62..8131706 100644 --- a/backend/api/blogs.go +++ b/backend/api/blogs.go @@ -2,7 +2,6 @@ package api import ( "context" - "fmt" "net/http" core "fr.latosa-escrima/api/core" diff --git a/backend/api/event.go b/backend/api/event.go index b2a1336..20e3869 100644 --- a/backend/api/event.go +++ b/backend/api/event.go @@ -2,7 +2,6 @@ package api import ( "context" - "encoding/json" "net/http" core "fr.latosa-escrima/api/core" diff --git a/backend/main.go b/backend/main.go index e9ff310..6a1878f 100644 --- a/backend/main.go +++ b/backend/main.go @@ -35,6 +35,7 @@ func main() { User: os.Getenv("POSTGRES_USER"), Password: os.Getenv("POSTGRES_PASSWORD"), } + fmt.Println(dsn.ToString()) core.DB, err = core.InitDatabase(dsn) if err != nil { log.Fatal(err)