diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-11-15 23:20:03 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-11-15 23:25:46 +0900 |
| commit | fe40af7b7e95356b7d88e35941097edc9700f093 (patch) | |
| tree | d04ddc46f4cf053e51156e1c08cdeaf16dd2a2fa /internal/system | |
| parent | 12751932d1cbfc911a75445061d87264b927de5f (diff) | |
internal/wayland: relocate connection struct
This interface is getting replaced, so relocating it to the deprecated wrapper package before working on its replacement.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/system')
| -rw-r--r-- | internal/system/wayland.go | 2 | ||||
| -rw-r--r-- | internal/system/wayland_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/system/wayland.go b/internal/system/wayland.go index c423fe24..bbecde18 100644 --- a/internal/system/wayland.go +++ b/internal/system/wayland.go @@ -8,7 +8,7 @@ import ( "hakurei.app/container/check" "hakurei.app/hst" "hakurei.app/internal/acl" - "hakurei.app/internal/wayland" + "hakurei.app/system/wayland" ) type waylandConn interface { diff --git a/internal/system/wayland_test.go b/internal/system/wayland_test.go index 4e7db513..c70603bf 100644 --- a/internal/system/wayland_test.go +++ b/internal/system/wayland_test.go @@ -7,7 +7,7 @@ import ( "hakurei.app/container/stub" "hakurei.app/internal/acl" - "hakurei.app/internal/wayland" + "hakurei.app/system/wayland" ) type stubWaylandConn struct { |
