mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-05 02:01:03 +00:00
7 lines
205 B
Go
7 lines
205 B
Go
package joinroom
|
|
|
|
// https://matrix.org/docs/spec/client_server/r0.4.0.html#id276
|
|
type JoinRoomReply struct {
|
|
RoomID string `json:"room_id"` // The joined room ID must be returned in the room_id field.
|
|
}
|