Run go fmt

This commit is contained in:
froge 2025-02-12 14:31:19 +10:00
parent 47d45625bc
commit 72fef2e3b2
Signed by: froge
GPG key ID: A825E09930271BFA
7 changed files with 122 additions and 122 deletions

View file

@ -1,15 +1,15 @@
package main package main
import ( import (
"github.com/gin-gonic/gin"
"encoding/base64" "encoding/base64"
"encoding/json" "encoding/json"
"net/http" "fmt"
"github.com/gin-gonic/gin"
"io"
"log/slog" "log/slog"
"net/http"
"strings" "strings"
"time" "time"
"fmt"
"io"
) )
// Used to unmarshal response data into type safe struct // Used to unmarshal response data into type safe struct

View file

@ -1,8 +1,8 @@
package main package main
import ( import (
"testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"testing"
) )
func TestgetSpotifyAuthURL(t *testing.T) { func TestgetSpotifyAuthURL(t *testing.T) {

View file

@ -1,10 +1,10 @@
package main package main
import ( import (
"fmt"
"gorm.io/driver/sqlite" "gorm.io/driver/sqlite"
"gorm.io/gorm" "gorm.io/gorm"
"log/slog" "log/slog"
"fmt"
) )
type ArtistProfile struct { type ArtistProfile struct {

View file

@ -1,11 +1,11 @@
package main package main
import ( import (
"fmt"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"gorm.io/gorm/clause" "gorm.io/gorm/clause"
"net/http"
"log/slog" "log/slog"
"fmt" "net/http"
) )
func (env *Env) alive(c *gin.Context) { func (env *Env) alive(c *gin.Context) {
@ -40,7 +40,7 @@ func (env *Env) getArtistByID(c *gin.Context) {
// Update DB here // Update DB here
var genreList []Genre var genreList []Genre
for _, val := range spotifyResponse.Genres { for _, val := range spotifyResponse.Genres {
genreList = append(genreList, Genre {Name: val}) genreList = append(genreList, Genre{Name: val})
} }
artistProfile := ArtistProfile{ artistProfile := ArtistProfile{

View file

@ -1,12 +1,12 @@
package main package main
import ( import (
"net/http"
"encoding/json" "encoding/json"
"net/http/httptest"
"github.com/stretchr/testify/assert"
"testing"
"fmt" "fmt"
"github.com/stretchr/testify/assert"
"net/http"
"net/http/httptest"
"testing"
) )
func TestAliveRoute(t *testing.T) { func TestAliveRoute(t *testing.T) {

View file

@ -1,10 +1,10 @@
package main package main
import ( import (
"fmt"
"errors"
"net/http"
"encoding/json" "encoding/json"
"errors"
"fmt"
"net/http"
) )
type SpotifyResponse struct { type SpotifyResponse struct {