mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-05 02:01:03 +00:00
7 lines
215 B
Go
7 lines
215 B
Go
package whoami
|
|
|
|
// https://matrix.org/docs/spec/client_server/latest#get-matrix-client-r0-account-whoami
|
|
type Response struct {
|
|
UserID string `json:"user_id"` // Required. The user id that owns the access token.
|
|
}
|