summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
Diffstat (limited to 'run')
-rw-r--r--run/edit.go2
-rw-r--r--run/run.go8
2 files changed, 5 insertions, 5 deletions
diff --git a/run/edit.go b/run/edit.go
index ad7645c..b3ea722 100644
--- a/run/edit.go
+++ b/run/edit.go
@@ -2,9 +2,9 @@ package run
import (
"errors"
+ "git.ewy.one/pik/model"
"os"
"os/exec"
- "pik/model"
)
var NoEditorError = errors.New("$EDITOR not set")
diff --git a/run/run.go b/run/run.go
index efbd01b..c6de62c 100644
--- a/run/run.go
+++ b/run/run.go
@@ -2,11 +2,11 @@ package run
import (
"fmt"
+ "git.ewy.one/pik/env"
+ "git.ewy.one/pik/flags"
+ "git.ewy.one/pik/menu"
+ "git.ewy.one/pik/model"
"os"
- "pik/env"
- "pik/flags"
- "pik/menu"
- "pik/model"
"slices"
)