10 lines
148 B
Go
10 lines
148 B
Go
package sway
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (c *Client) GetOutputs(ctx context.Context) ([]Output, error) {
|
|
return sendMessage[[]Output](c, 3, "")
|
|
}
|