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
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

View file

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

View file

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

View file

@ -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) {

View file

@ -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) {

View file

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