sway/get_outputs.go
2024-02-14 16:48:50 +01:00

6 lines
106 B
Go

package sway
func (c *Client) GetOutputs() ([]Output, error) {
return sendMessage[[]Output](c, 3, "")
}