10 lines
153 B
Go
10 lines
153 B
Go
|
package sway
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
func (c *Client) GetBindingModes(ctx context.Context) ([]string, error) {
|
||
|
return sendMessage[[]string](c, 8, "")
|
||
|
}
|