You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
// Online ip and room online. |
|
type Online struct { |
|
Server string `json:"server"` |
|
RoomCount map[string]int32 `json:"room_count"` |
|
Updated int64 `json:"updated"` |
|
} |
|
|
|
// Top top sorted. |
|
type Top struct { |
|
RoomID string `json:"room_id"` |
|
Count int32 `json:"count"` |
|
}
|
|
|