summaryrefslogtreecommitdiff
path: root/internal/repl
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-26 12:08:09 +0200
committerPaul Buetow <paul@buetow.org>2026-03-26 12:08:09 +0200
commiteff15a3a58dc97e270d38c1d5f071ccc4c2fd6db (patch)
tree107ef7eb27f0dec2f1a22ac3b6666f82d790f241 /internal/repl
parent208219f09bbdbb47a3584952ec9d82343276eb01 (diff)
fix module
Diffstat (limited to 'internal/repl')
-rw-r--r--internal/repl/handlers.go4
-rw-r--r--internal/repl/repl.go2
-rw-r--r--internal/repl/repl_test.go2
3 files changed, 4 insertions, 4 deletions
diff --git a/internal/repl/handlers.go b/internal/repl/handlers.go
index 6647f3d..b1d27bc 100644
--- a/internal/repl/handlers.go
+++ b/internal/repl/handlers.go
@@ -8,8 +8,8 @@ import (
"strconv"
"strings"
- "codeberg.org/snonux/perc/internal/perc"
- "codeberg.org/snonux/perc/internal/rpn"
+ "codeberg.org/snonux/gt/internal/perc"
+ "codeberg.org/snonux/gt/internal/rpn"
)
// CommandHandler represents a handler in the chain of responsibility pattern.
diff --git a/internal/repl/repl.go b/internal/repl/repl.go
index 243cf90..f452351 100644
--- a/internal/repl/repl.go
+++ b/internal/repl/repl.go
@@ -8,7 +8,7 @@ import (
"strings"
"sync"
- "codeberg.org/snonux/perc/internal/rpn"
+ "codeberg.org/snonux/gt/internal/rpn"
"github.com/c-bata/go-prompt"
)
diff --git a/internal/repl/repl_test.go b/internal/repl/repl_test.go
index 613bc36..3abb664 100644
--- a/internal/repl/repl_test.go
+++ b/internal/repl/repl_test.go
@@ -7,7 +7,7 @@ import (
"strings"
"testing"
- "codeberg.org/snonux/perc/internal/rpn"
+ "codeberg.org/snonux/gt/internal/rpn"
"github.com/c-bata/go-prompt"
)