summaryrefslogtreecommitdiff
path: root/cache
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-06-06 15:58:36 +0200
committerewy <ewy0@protonmail.com>2026-06-06 15:58:36 +0200
commit58e255d3c16c7d4a7d08afde7dd3acf481e2d8ae (patch)
treec1d15465477e587f50a5771f6a956e8b96573659 /cache
parent8b1ee2834dca6a9fa29f190ac69a095562ec8680 (diff)
update package paths
Diffstat (limited to 'cache')
-rw-r--r--cache/cache.go4
-rw-r--r--cache/cache_test.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/cache/cache.go b/cache/cache.go
index 7121f65..f06716f 100644
--- a/cache/cache.go
+++ b/cache/cache.go
@@ -3,8 +3,8 @@ package cache
import (
"bufio"
"errors"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
"io"
"io/fs"
"os"
diff --git a/cache/cache_test.go b/cache/cache_test.go
index 76096ee..2980043 100644
--- a/cache/cache_test.go
+++ b/cache/cache_test.go
@@ -3,14 +3,14 @@
package cache
import (
- "github.com/ewy1/pik/paths"
+ "git.sr.ht/~ewy/pik/paths"
"os"
"path/filepath"
"strings"
"testing"
"testing/fstest"
- . "github.com/ewy1/pik/runner"
+ . "git.sr.ht/~ewy/pik/runner"
"github.com/stretchr/testify/assert"
)