13 lines
234 B
Go
13 lines
234 B
Go
package types
|
|
|
|
type Client struct {
|
|
Id string `json:"id" bson:"id"`
|
|
SessionId string `json:"session_id"`
|
|
ViewPort ViewPort `json:"viewport"`
|
|
}
|
|
|
|
type ViewPort struct {
|
|
Rows uint `json:"rows"`
|
|
Cols uint `json:"cols"`
|
|
}
|