summaryrefslogtreecommitdiff
path: root/internal/hexailsp
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-31 23:09:47 +0300
committerPaul Buetow <paul@buetow.org>2025-08-31 23:09:47 +0300
commit64a846c2b2abc244106cbf24b0a309a1e57308fe (patch)
tree4f335090947a0b7fdfff18857ace74d00cebf62e /internal/hexailsp
parent397e9009ed808b00fdb36014b52626881436a2ed (diff)
module: set module path to codeberg.org/snonux/hexai; update imports; docs: add go install instructionsv0.3.4
Diffstat (limited to 'internal/hexailsp')
-rw-r--r--internal/hexailsp/run.go8
-rw-r--r--internal/hexailsp/run_test.go8
2 files changed, 8 insertions, 8 deletions
diff --git a/internal/hexailsp/run.go b/internal/hexailsp/run.go
index 4700f27..1ff1ded 100644
--- a/internal/hexailsp/run.go
+++ b/internal/hexailsp/run.go
@@ -8,10 +8,10 @@ import (
"os"
"strings"
- "hexai/internal/appconfig"
- "hexai/internal/llm"
- "hexai/internal/logging"
- "hexai/internal/lsp"
+ "codeberg.org/snonux/hexai/internal/appconfig"
+ "codeberg.org/snonux/hexai/internal/llm"
+ "codeberg.org/snonux/hexai/internal/logging"
+ "codeberg.org/snonux/hexai/internal/lsp"
)
// ServerRunner is the minimal interface satisfied by lsp.Server.
diff --git a/internal/hexailsp/run_test.go b/internal/hexailsp/run_test.go
index df810e2..340a08a 100644
--- a/internal/hexailsp/run_test.go
+++ b/internal/hexailsp/run_test.go
@@ -9,10 +9,10 @@ import (
"path/filepath"
"testing"
- "hexai/internal/appconfig"
- "hexai/internal/llm"
- "hexai/internal/logging"
- "hexai/internal/lsp"
+ "codeberg.org/snonux/hexai/internal/appconfig"
+ "codeberg.org/snonux/hexai/internal/llm"
+ "codeberg.org/snonux/hexai/internal/logging"
+ "codeberg.org/snonux/hexai/internal/lsp"
)
// fake server capturing options and recording run calls