aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/store
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-17 15:35:58 +0900
committerOphestra <cat@gensokyo.uk>2026-03-17 15:39:03 +0900
commit6d015a949e27f20c86409c7d78053f0b0493f165 (patch)
tree4d2bc1e9596fa30ea03e4c0cc575e6a7a969249d /internal/store
parente9a72490db44426605debd3cc756a7924931d706 (diff)
check: move from container
This package is not container specific, and widely used across the project. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/store')
-rw-r--r--internal/store/segment.go2
-rw-r--r--internal/store/segment_test.go2
-rw-r--r--internal/store/store.go2
-rw-r--r--internal/store/store_test.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/internal/store/segment.go b/internal/store/segment.go
index 79f652e7..c2a718ca 100644
--- a/internal/store/segment.go
+++ b/internal/store/segment.go
@@ -8,7 +8,7 @@ import (
"strconv"
"sync"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/lockedfile"
)
diff --git a/internal/store/segment_test.go b/internal/store/segment_test.go
index 67915459..671f27a0 100644
--- a/internal/store/segment_test.go
+++ b/internal/store/segment_test.go
@@ -12,7 +12,7 @@ import (
"testing"
_ "unsafe" // for go:linkname
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/container/stub"
"hakurei.app/hst"
"hakurei.app/internal/store"
diff --git a/internal/store/store.go b/internal/store/store.go
index 4fefd5c9..3604521c 100644
--- a/internal/store/store.go
+++ b/internal/store/store.go
@@ -10,7 +10,7 @@ import (
"sync"
"syscall"
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/lockedfile"
)
diff --git a/internal/store/store_test.go b/internal/store/store_test.go
index 9abf480e..2210f543 100644
--- a/internal/store/store_test.go
+++ b/internal/store/store_test.go
@@ -14,7 +14,7 @@ import (
"time"
_ "unsafe" // for go:linkname
- "hakurei.app/container/check"
+ "hakurei.app/check"
"hakurei.app/hst"
"hakurei.app/internal/store"
)