sway/get_version.go

7 lines
163 B
Go
Raw Normal View History

package sway
2024-02-14 17:21:50 +01:00
// GetVersion returns information about the sway version
2024-02-14 16:48:50 +01:00
func (c *Client) GetVersion() (*Version, error) {
return sendMessage[*Version](c, 7, "")
}