Skip to content

Commit a629ec7

Browse files
committed
refactor: 将仓库名从 Bowl42 更改为 awsl-project
1 parent b1ca7df commit a629ec7

69 files changed

Lines changed: 139 additions & 139 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ ARG BUILD_TIME=unknown
4949
# Build backend binary with version info
5050
RUN CGO_ENABLED=1 GOOS=linux go build -a -installsuffix cgo \
5151
-ldflags="-s -w \
52-
-X github.com/Bowl42/maxx/internal/version.Version=${VERSION} \
53-
-X github.com/Bowl42/maxx/internal/version.Commit=${COMMIT} \
54-
-X github.com/Bowl42/maxx/internal/version.BuildTime=${BUILD_TIME}" \
52+
-X github.com/awsl-project/maxx/internal/version.Version=${VERSION} \
53+
-X github.com/awsl-project/maxx/internal/version.Commit=${COMMIT} \
54+
-X github.com/awsl-project/maxx/internal/version.BuildTime=${BUILD_TIME}" \
5555
-o maxx cmd/maxx/main.go
5656

5757
# Stage 3: Final runtime image

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ vars:
77
sh: git rev-parse --short HEAD 2>/dev/null || echo "unknown"
88
BUILD_TIME:
99
sh: date -u '+%Y-%m-%dT%H:%M:%SZ'
10-
LDFLAGS: -X github.com/Bowl42/maxx/internal/version.Version={{.VERSION}} -X github.com/Bowl42/maxx/internal/version.Commit={{.COMMIT}} -X github.com/Bowl42/maxx/internal/version.BuildTime={{.BUILD_TIME}}
10+
LDFLAGS: -X github.com/awsl-project/maxx/internal/version.Version={{.VERSION}} -X github.com/awsl-project/maxx/internal/version.Commit={{.COMMIT}} -X github.com/awsl-project/maxx/internal/version.BuildTime={{.BUILD_TIME}}
1111

1212
tasks:
1313
dev:

cmd/desktop/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
1212
"github.com/wailsapp/wails/v2/pkg/options/mac"
1313
"github.com/wailsapp/wails/v2/pkg/options/windows"
14-
"github.com/Bowl42/maxx/internal/desktop"
14+
"github.com/awsl-project/maxx/internal/desktop"
1515
)
1616

1717
//go:embed all:../web/dist

cmd/maxx/main.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ import (
99
"path/filepath"
1010
"time"
1111

12-
"github.com/Bowl42/maxx/internal/adapter/client"
13-
_ "github.com/Bowl42/maxx/internal/adapter/provider/antigravity" // Register antigravity adapter
14-
_ "github.com/Bowl42/maxx/internal/adapter/provider/custom" // Register custom adapter
15-
"github.com/Bowl42/maxx/internal/cooldown"
16-
"github.com/Bowl42/maxx/internal/executor"
17-
"github.com/Bowl42/maxx/internal/handler"
18-
"github.com/Bowl42/maxx/internal/repository/cached"
19-
"github.com/Bowl42/maxx/internal/repository/sqlite"
20-
"github.com/Bowl42/maxx/internal/router"
21-
"github.com/Bowl42/maxx/internal/service"
22-
"github.com/Bowl42/maxx/internal/version"
23-
"github.com/Bowl42/maxx/internal/waiter"
12+
"github.com/awsl-project/maxx/internal/adapter/client"
13+
_ "github.com/awsl-project/maxx/internal/adapter/provider/antigravity" // Register antigravity adapter
14+
_ "github.com/awsl-project/maxx/internal/adapter/provider/custom" // Register custom adapter
15+
"github.com/awsl-project/maxx/internal/cooldown"
16+
"github.com/awsl-project/maxx/internal/executor"
17+
"github.com/awsl-project/maxx/internal/handler"
18+
"github.com/awsl-project/maxx/internal/repository/cached"
19+
"github.com/awsl-project/maxx/internal/repository/sqlite"
20+
"github.com/awsl-project/maxx/internal/router"
21+
"github.com/awsl-project/maxx/internal/service"
22+
"github.com/awsl-project/maxx/internal/version"
23+
"github.com/awsl-project/maxx/internal/waiter"
2424
)
2525

2626
// getDefaultDataDir returns the default data directory path (~/.config/maxx)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/Bowl42/maxx
1+
module github.com/awsl-project/maxx
22

33
go 1.25.5
44

internal/adapter/client/adapter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"regexp"
1111
"strings"
1212

13-
"github.com/Bowl42/maxx/internal/domain"
13+
"github.com/awsl-project/maxx/internal/domain"
1414
)
1515

1616
// RequestInfo contains extracted request information

internal/adapter/provider/adapter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"net/http"
66

7-
"github.com/Bowl42/maxx/internal/domain"
7+
"github.com/awsl-project/maxx/internal/domain"
88
)
99

1010
// ProviderAdapter handles communication with upstream providers

internal/adapter/provider/antigravity/adapter.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import (
1414
"sync"
1515
"time"
1616

17-
"github.com/Bowl42/maxx/internal/adapter/provider"
18-
ctxutil "github.com/Bowl42/maxx/internal/context"
19-
"github.com/Bowl42/maxx/internal/domain"
20-
"github.com/Bowl42/maxx/internal/usage"
17+
"github.com/awsl-project/maxx/internal/adapter/provider"
18+
ctxutil "github.com/awsl-project/maxx/internal/context"
19+
"github.com/awsl-project/maxx/internal/domain"
20+
"github.com/awsl-project/maxx/internal/usage"
2121
)
2222

2323
func init() {

internal/adapter/provider/antigravity/oauth_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77
"time"
88

9-
"github.com/Bowl42/maxx/internal/event"
9+
"github.com/awsl-project/maxx/internal/event"
1010
)
1111

1212
// OAuthSession 表示一个 OAuth 授权会话

internal/adapter/provider/custom/adapter.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ import (
1212
"strings"
1313
"time"
1414

15-
"github.com/Bowl42/maxx/internal/adapter/provider"
16-
ctxutil "github.com/Bowl42/maxx/internal/context"
17-
"github.com/Bowl42/maxx/internal/converter"
18-
"github.com/Bowl42/maxx/internal/domain"
19-
"github.com/Bowl42/maxx/internal/pricing"
20-
"github.com/Bowl42/maxx/internal/usage"
15+
"github.com/awsl-project/maxx/internal/adapter/provider"
16+
ctxutil "github.com/awsl-project/maxx/internal/context"
17+
"github.com/awsl-project/maxx/internal/converter"
18+
"github.com/awsl-project/maxx/internal/domain"
19+
"github.com/awsl-project/maxx/internal/pricing"
20+
"github.com/awsl-project/maxx/internal/usage"
2121
)
2222

2323
func init() {

0 commit comments

Comments
 (0)