sway/get_outputs.go

10 lines
148 B
Go
Raw Normal View History

2024-02-14 15:26:04 +01:00
package sway
import (
"context"
)
func (c *Client) GetOutputs(ctx context.Context) ([]Output, error) {
return sendMessage[[]Output](c, 3, "")
2024-02-14 15:26:04 +01:00
}