summaryrefslogtreecommitdiff
path: root/runner/python
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-05-02 15:24:12 +0200
committerewy <ewy0@protonmail.com>2026-05-02 15:24:33 +0200
commit1e932e7015ac9d21a1f92ad57cd0c109f58bb29f (patch)
tree5e9e3f5c80037a9c5871761e285df76669149b84 /runner/python
parent10ee69de59f3e6f9cae79746c6ab9a6eb9603400 (diff)
yep
Diffstat (limited to 'runner/python')
-rw-r--r--runner/python/file.go8
-rw-r--r--runner/python/indexer.go2
-rw-r--r--runner/python/proj.go4
-rw-r--r--runner/python/runner.go6
4 files changed, 10 insertions, 10 deletions
diff --git a/runner/python/file.go b/runner/python/file.go
index 53a790d..b6a3f3f 100644
--- a/runner/python/file.go
+++ b/runner/python/file.go
@@ -1,10 +1,10 @@
package python
import (
- "git.ewy.one/pik.git/describe"
- "git.ewy.one/pik.git/model"
- "git.ewy.one/pik.git/runner"
- "git.ewy.one/pik.git/spool"
+ "github.com/ewy1/pik/describe"
+ "github.com/ewy1/pik/model"
+ "github.com/ewy1/pik/runner"
+ "github.com/ewy1/pik/spool"
"os/exec"
"path/filepath"
)
diff --git a/runner/python/indexer.go b/runner/python/indexer.go
index 8652779..ff64fc8 100644
--- a/runner/python/indexer.go
+++ b/runner/python/indexer.go
@@ -1,7 +1,7 @@
package python
import (
- "git.ewy.one/pik.git/model"
+ "github.com/ewy1/pik/model"
"github.com/pelletier/go-toml/v2"
"io/fs"
"os"
diff --git a/runner/python/proj.go b/runner/python/proj.go
index 7d11257..5b02b58 100644
--- a/runner/python/proj.go
+++ b/runner/python/proj.go
@@ -1,8 +1,8 @@
package python
import (
- "git.ewy.one/pik.git/model"
- "git.ewy.one/pik.git/runner"
+ "github.com/ewy1/pik/model"
+ "github.com/ewy1/pik/runner"
"os/exec"
"path/filepath"
)
diff --git a/runner/python/runner.go b/runner/python/runner.go
index 74929d4..6aa6017 100644
--- a/runner/python/runner.go
+++ b/runner/python/runner.go
@@ -2,9 +2,9 @@ package python
import (
"errors"
- "git.ewy.one/pik.git/identity"
- "git.ewy.one/pik.git/model"
- "git.ewy.one/pik.git/runner"
+ "github.com/ewy1/pik/identity"
+ "github.com/ewy1/pik/model"
+ "github.com/ewy1/pik/runner"
"io/fs"
"os/exec"
"path/filepath"