chaned go mod name

This commit is contained in:
2025-09-21 18:56:33 -07:00
parent 9d1566cfdf
commit 2f83ed2cf2
41 changed files with 551 additions and 81 deletions

View File

@@ -3,8 +3,8 @@ package client_test
import (
"testing"
"go-garth/internal/api/client"
"go-garth/internal/auth/credentials"
"github.com/sstent/go-garth/internal/api/client"
"github.com/sstent/go-garth/internal/auth/credentials"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

View File

@@ -14,11 +14,11 @@ import (
"strings"
"time"
"go-garth/internal/auth/sso"
"go-garth/internal/errors"
types "go-garth/internal/models/types"
shared "go-garth/shared/interfaces"
models "go-garth/shared/models"
"github.com/sstent/go-garth/internal/auth/sso"
"github.com/sstent/go-garth/internal/errors"
types "github.com/sstent/go-garth/internal/models/types"
shared "github.com/sstent/go-garth/shared/interfaces"
models "github.com/sstent/go-garth/shared/models"
)
// Client represents the Garmin Connect API client

View File

@@ -7,12 +7,12 @@ import (
"testing"
"time"
"go-garth/internal/testutils"
"github.com/sstent/go-garth/internal/testutils"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go-garth/internal/api/client"
"github.com/sstent/go-garth/internal/api/client"
)
func TestClient_GetUserProfile(t *testing.T) {