Skip to content

Commit 029abd0

Browse files
uuczclaude
andcommitted
Update module path to github.com/uucz/llmview
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3a5f8c5 commit 029abd0

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/llmview/llmview
1+
module github.com/uucz/llmview
22

33
go 1.22.0
44

internal/proxy/providers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package proxy
33
import (
44
"encoding/json"
55

6-
"github.com/llmview/llmview/internal/storage"
6+
"github.com/uucz/llmview/internal/storage"
77
)
88

99
// ProviderConfig defines the upstream target for each provider.

internal/proxy/providers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package proxy
33
import (
44
"testing"
55

6-
"github.com/llmview/llmview/internal/storage"
6+
"github.com/uucz/llmview/internal/storage"
77
)
88

99
func TestExtractModelOpenAI(t *testing.T) {

internal/proxy/proxy.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"strings"
1212
"time"
1313

14-
"github.com/llmview/llmview/internal/cost"
15-
"github.com/llmview/llmview/internal/storage"
16-
"github.com/llmview/llmview/internal/ws"
14+
"github.com/uucz/llmview/internal/cost"
15+
"github.com/uucz/llmview/internal/storage"
16+
"github.com/uucz/llmview/internal/ws"
1717
)
1818

1919
// Proxy intercepts LLM API calls, logs them, and forwards to upstream.

internal/server/server.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"net/http"
88
"strconv"
99

10-
"github.com/llmview/llmview/internal/cost"
11-
"github.com/llmview/llmview/internal/proxy"
12-
"github.com/llmview/llmview/internal/storage"
13-
"github.com/llmview/llmview/internal/ws"
10+
"github.com/uucz/llmview/internal/cost"
11+
"github.com/uucz/llmview/internal/proxy"
12+
"github.com/uucz/llmview/internal/storage"
13+
"github.com/uucz/llmview/internal/ws"
1414
)
1515

1616
// Server is the main HTTP server that mounts proxy, API, WebSocket, and UI.

internal/ws/hub.go

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

99
"github.com/gorilla/websocket"
10-
"github.com/llmview/llmview/internal/storage"
10+
"github.com/uucz/llmview/internal/storage"
1111
)
1212

1313
var upgrader = websocket.Upgrader{

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"syscall"
1010
"time"
1111

12-
"github.com/llmview/llmview/internal/server"
12+
"github.com/uucz/llmview/internal/server"
1313
)
1414

1515
var version = "dev"

0 commit comments

Comments
 (0)