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

6 lines
117 B
Go

package sway
func (c *Client) GetInputs() ([]InputDevice, error) {
return sendMessage[[]InputDevice](c, 100, "")
}