From 43ed1cc455d29e8d6286e08108ed44a93ac6dfaf Mon Sep 17 00:00:00 2001 From: Adam French Date: Sat, 22 Nov 2025 11:48:23 +0000 Subject: [PATCH] added env --- .gitignore | 1 - backend/services/spotify.go | 2 -- 2 files changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index 005a66b..8d3b4fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ certbot/ -.env diff --git a/backend/services/spotify.go b/backend/services/spotify.go index 0d1b5b9..58799bc 100644 --- a/backend/services/spotify.go +++ b/backend/services/spotify.go @@ -2,7 +2,6 @@ package services import ( "context" - "log" "os" "github.com/zmb3/spotify/v2" @@ -12,7 +11,6 @@ import ( func InitSpotify() (*spotify.Client, error) { ctx := context.Background() - log.Fatal("Tets") // redirectURI := os.Getenv("SPOTIFY_REDIRECT_URI") clientID := os.Getenv("SPOTIFY_CLIENT_ID")