mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-09-27 03:45:52 +08:00
13 lines
231 B
Go
13 lines
231 B
Go
//go:build linux && !android
|
|
// +build linux,!android
|
|
|
|
package windowmanagerhandler
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (wmh *WindowManagerHandler) initUsingWayland() error {
|
|
return fmt.Errorf("support of Wayland is not implemented, yet")
|
|
}
|