mirror of
https://github.com/jahruz67/wisp-open.git
synced 2026-08-08 18:14:08 +00:00
14 lines
265 B
Go
14 lines
265 B
Go
//go:build !linux
|
|
|
|
package main
|
|
|
|
func linuxYdotoolStatus() map[string]interface{} {
|
|
return map[string]interface{}{
|
|
"ready": false,
|
|
"installed": false,
|
|
"socket": false,
|
|
"socket_path": "",
|
|
"message": "ydotool is only used on Linux.",
|
|
}
|
|
}
|