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

@@ -11,7 +11,7 @@ import (
// LoadEnvCredentials loads credentials from .env file
func LoadEnvCredentials() (email, password, domain string, err error) {
// Determine project root (assuming .env is in the project root)
projectRoot := "/home/sstent/Projects/go-garth"
projectRoot := "/home/sstent/Projects/github.com/sstent/go-garth"
envPath := filepath.Join(projectRoot, ".env")
// Load .env file

View File

@@ -9,8 +9,8 @@ import (
"strings"
"time"
"go-garth/internal/models/types"
"go-garth/internal/utils"
"github.com/sstent/go-garth/internal/models/types"
"github.com/sstent/go-garth/internal/utils"
)
// GetOAuth1Token retrieves an OAuth1 token using the provided ticket

View File

@@ -9,8 +9,8 @@ import (
"strings"
"time"
"go-garth/internal/auth/oauth"
types "go-garth/internal/models/types"
"github.com/sstent/go-garth/internal/auth/oauth"
types "github.com/sstent/go-garth/internal/models/types"
)
var (