sync - build workin

This commit is contained in:
2025-09-22 18:45:54 -07:00
parent e04cd5160e
commit b98fed177d
110 changed files with 10189 additions and 8337 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/api/client"
"github.com/sstent/go-garth/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/auth/sso"
"github.com/sstent/go-garth/errors"
types "github.com/sstent/go-garth/models/types"
shared "github.com/sstent/go-garth-cli/shared/interfaces"
models "github.com/sstent/go-garth-cli/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/testutils"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go-garth/internal/api/client"
"github.com/sstent/go-garth/api/client"
)
func TestClient_GetUserProfile(t *testing.T) {