Files
streamctl/pkg/windowmanagerhandler/window_manager_handler_other.go

17 lines
338 B
Go

//go:build !linux
// +build !linux
package windowmanagerhandler
import (
"context"
"fmt"
)
type PlatformSpecificWindowManagerHandler struct{}
type WindowID struct{}
func (wmh *WindowManagerHandler) init(context.Context) error {
return fmt.Errorf("the support of window manager handler for this platform is not implemented, yet")
}