summaryrefslogtreecommitdiff
path: root/internal/api
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-02-08 21:38:48 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-02-08 21:38:48 -1000
commit46ba3f5d560c88405ee93e68995740fd1207e663 (patch)
tree8e14b420d55e6366d67d67748f0d36146b5e7eae /internal/api
parent2e2b2187b957e9af78797a67ec5c6874615fae02 (diff)
Rename Go module to github.com/thepeterstone/claudomator
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/api')
-rw-r--r--internal/api/server.go6
-rw-r--r--internal/api/server_test.go6
2 files changed, 6 insertions, 6 deletions
diff --git a/internal/api/server.go b/internal/api/server.go
index cc5e6e5..6caab9f 100644
--- a/internal/api/server.go
+++ b/internal/api/server.go
@@ -8,9 +8,9 @@ import (
"net/http"
"time"
- "github.com/claudomator/claudomator/internal/executor"
- "github.com/claudomator/claudomator/internal/storage"
- "github.com/claudomator/claudomator/internal/task"
+ "github.com/thepeterstone/claudomator/internal/executor"
+ "github.com/thepeterstone/claudomator/internal/storage"
+ "github.com/thepeterstone/claudomator/internal/task"
"github.com/google/uuid"
)
diff --git a/internal/api/server_test.go b/internal/api/server_test.go
index c3b77ae..1628636 100644
--- a/internal/api/server_test.go
+++ b/internal/api/server_test.go
@@ -13,9 +13,9 @@ import (
"context"
- "github.com/claudomator/claudomator/internal/executor"
- "github.com/claudomator/claudomator/internal/storage"
- "github.com/claudomator/claudomator/internal/task"
+ "github.com/thepeterstone/claudomator/internal/executor"
+ "github.com/thepeterstone/claudomator/internal/storage"
+ "github.com/thepeterstone/claudomator/internal/task"
)
func testServer(t *testing.T) (*Server, *storage.DB) {