package webssh
type HostMsg struct {
Uuid string `json:"uuid"`
UserID string `json:"userid"`
Secret string `json:"secret"`
Size []int `json:"size"`
}
type ReSizeMsg struct {
Height int `json:"rows"`
Width int `json:"cols"`
}
type TokenMsg struct {
Token string `json:"token"`
Secret string `json:"secret"`
Size []int `json:"size"`
}
type DataMsg struct {
Data string `json:"data"`
Room string `json:"room"`
}
-
Eric authored5533c490