Run go fmt
This commit is contained in:
parent
47d45625bc
commit
72fef2e3b2
7 changed files with 122 additions and 122 deletions
8
auth.go
8
auth.go
|
@ -1,15 +1,15 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
"encoding/base64"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"fmt"
|
||||
"github.com/gin-gonic/gin"
|
||||
"io"
|
||||
"log/slog"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
"fmt"
|
||||
"io"
|
||||
)
|
||||
|
||||
// Used to unmarshal response data into type safe struct
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestgetSpotifyAuthURL(t *testing.T) {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"gorm.io/driver/sqlite"
|
||||
"gorm.io/gorm"
|
||||
"log/slog"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
type ArtistProfile struct {
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/gin-gonic/gin"
|
||||
"gorm.io/gorm/clause"
|
||||
"net/http"
|
||||
"log/slog"
|
||||
"fmt"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
func (env *Env) alive(c *gin.Context) {
|
||||
|
@ -40,7 +40,7 @@ func (env *Env) getArtistByID(c *gin.Context) {
|
|||
// Update DB here
|
||||
var genreList []Genre
|
||||
for _, val := range spotifyResponse.Genres {
|
||||
genreList = append(genreList, Genre {Name: val})
|
||||
genreList = append(genreList, Genre{Name: val})
|
||||
}
|
||||
|
||||
artistProfile := ArtistProfile{
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"encoding/json"
|
||||
"net/http/httptest"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
"fmt"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestAliveRoute(t *testing.T) {
|
||||
|
|
6
utils.go
6
utils.go
|
@ -1,10 +1,10 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"errors"
|
||||
"net/http"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type SpotifyResponse struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue