aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/mbf
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-08-29 18:58:06 +0900
committerOphestra <cat@gensokyo.uk>2026-08-29 18:58:06 +0900
commitc2d900ec74e03e9c782cfe7b7ce06ff62cda6601 (patch)
treefb13320bfdc62d810aa59769e8809dc2f707919e /cmd/mbf
parentbd4f29909e0750a4660eaf48e3169777a265b0ab (diff)
pkg: move from internalHEADstagingmasterdevelop
Closes #43. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/mbf')
-rw-r--r--cmd/mbf/cache.go2
-rw-r--r--cmd/mbf/cache_test.go2
-rw-r--r--cmd/mbf/daemon.go2
-rw-r--r--cmd/mbf/daemon_test.go2
-rw-r--r--cmd/mbf/info.go2
-rw-r--r--cmd/mbf/info_test.go2
-rw-r--r--cmd/mbf/internal/pkgserver/index.go2
-rw-r--r--cmd/mbf/main.go2
8 files changed, 8 insertions, 8 deletions
diff --git a/cmd/mbf/cache.go b/cmd/mbf/cache.go
index 847d7d4e..0e20ca99 100644
--- a/cmd/mbf/cache.go
+++ b/cmd/mbf/cache.go
@@ -9,9 +9,9 @@ import (
"testing"
"hakurei.app/check"
- "hakurei.app/internal/pkg"
"hakurei.app/internal/rosa"
"hakurei.app/message"
+ "hakurei.app/pkg"
)
// cache refers to an instance of [pkg.Cache] that might be open.
diff --git a/cmd/mbf/cache_test.go b/cmd/mbf/cache_test.go
index a4d33af5..498743e9 100644
--- a/cmd/mbf/cache_test.go
+++ b/cmd/mbf/cache_test.go
@@ -5,8 +5,8 @@ import (
"os"
"testing"
- "hakurei.app/internal/pkg"
"hakurei.app/message"
+ "hakurei.app/pkg"
)
func TestCache(t *testing.T) {
diff --git a/cmd/mbf/daemon.go b/cmd/mbf/daemon.go
index d694bea0..72ab2b24 100644
--- a/cmd/mbf/daemon.go
+++ b/cmd/mbf/daemon.go
@@ -16,7 +16,7 @@ import (
"unique"
"hakurei.app/check"
- "hakurei.app/internal/pkg"
+ "hakurei.app/pkg"
)
// daemonTimeout is the maximum amount of time cureFromIR will wait on I/O.
diff --git a/cmd/mbf/daemon_test.go b/cmd/mbf/daemon_test.go
index 97b3ba9b..58456f67 100644
--- a/cmd/mbf/daemon_test.go
+++ b/cmd/mbf/daemon_test.go
@@ -15,8 +15,8 @@ import (
"time"
"hakurei.app/check"
- "hakurei.app/internal/pkg"
"hakurei.app/message"
+ "hakurei.app/pkg"
)
func TestNoReply(t *testing.T) {
diff --git a/cmd/mbf/info.go b/cmd/mbf/info.go
index d0afc8f5..a4bc7c02 100644
--- a/cmd/mbf/info.go
+++ b/cmd/mbf/info.go
@@ -8,8 +8,8 @@ import (
"strings"
"unique"
- "hakurei.app/internal/pkg"
"hakurei.app/internal/rosa"
+ "hakurei.app/pkg"
)
// commandInfo implements the info subcommand.
diff --git a/cmd/mbf/info_test.go b/cmd/mbf/info_test.go
index d85266ef..deeef459 100644
--- a/cmd/mbf/info_test.go
+++ b/cmd/mbf/info_test.go
@@ -13,9 +13,9 @@ import (
"unique"
"unsafe"
- "hakurei.app/internal/pkg"
"hakurei.app/internal/rosa"
"hakurei.app/message"
+ "hakurei.app/pkg"
)
func TestInfo(t *testing.T) {
diff --git a/cmd/mbf/internal/pkgserver/index.go b/cmd/mbf/internal/pkgserver/index.go
index f62a7e73..2a9b6de5 100644
--- a/cmd/mbf/internal/pkgserver/index.go
+++ b/cmd/mbf/internal/pkgserver/index.go
@@ -6,8 +6,8 @@ import (
"slices"
"strings"
- "hakurei.app/internal/pkg"
"hakurei.app/internal/rosa"
+ "hakurei.app/pkg"
)
const (
diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go
index c6e1940f..4f471d6a 100644
--- a/cmd/mbf/main.go
+++ b/cmd/mbf/main.go
@@ -39,9 +39,9 @@ import (
"hakurei.app/command"
"hakurei.app/ext"
"hakurei.app/fhs"
- "hakurei.app/internal/pkg"
"hakurei.app/internal/rosa"
"hakurei.app/message"
+ "hakurei.app/pkg"
"hakurei.app/cmd/mbf/internal/pkgserver"
"hakurei.app/cmd/mbf/internal/pkgserver/ui"