mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-05 10:11:02 +00:00
8 lines
446 B
Go
8 lines
446 B
Go
package versions
|
|
|
|
// https://matrix.org/docs/spec/client_server/latest#get-matrix-client-versions
|
|
type Reply struct {
|
|
Versions []string `json:"versions"` // The supported versions.
|
|
UnstableFeatures map[string]bool `json:"unstable_features,omitempty"` // Experimental features the server supports. Features not listed here, or the lack of this property all together, indicate that a feature is not supported.
|
|
}
|