mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-09 12:11:03 +00:00
7 lines
163 B
Go
7 lines
163 B
Go
package createroom
|
|
|
|
// https://matrix.org/docs/spec/client_server/latest#post-matrix-client-r0-createroom
|
|
type Response struct {
|
|
RoomID string `json:"room_id"`
|
|
}
|