aboutsummaryrefslogtreecommitdiffhomepage
path: root/dbus/export_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-02 21:52:07 +0900
committerOphestra <cat@gensokyo.uk>2025-07-02 21:52:07 +0900
commit82561d62b66f17c05604e87f18187bb3a91f00d2 (patch)
treec1543f85b4458b7d5cb2cf7b1baa9dee318debfe /dbus/export_test.go
parenteec021cc4b4eb42bc9c8311755826828bfba1996 (diff)
system: move system access packages
These packages loosely belong in the "system" package and "system" provides high level wrappers for all of them. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'dbus/export_test.go')
-rw-r--r--dbus/export_test.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/dbus/export_test.go b/dbus/export_test.go
deleted file mode 100644
index 574a4a73..00000000
--- a/dbus/export_test.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package dbus
-
-import (
- "context"
- "io"
-)
-
-// NewDirect returns a new instance of [Proxy] with its sandbox disabled.
-func NewDirect(ctx context.Context, final *Final, output io.Writer) *Proxy {
- p := New(ctx, final, output)
- p.useSandbox = false
- return p
-}