We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
room stats retrievable via https://{somethingdomain}/api/groups
The text was updated successfully, but these errors were encountered:
heres temporary structure for wiimmfi-room-watcher:
type WiiLinkRoom struct { Id string `json:"id"` Game string `json:"game"` Created string `json:"created"` Type string `json:"type"` Suspend bool `json:"suspend"` RoomHost string `json:"host"` GameModeRegion string `json:"rk"` Players map[string]Player `json:"players"` } type Player struct { Count string `json:"count"` Pid string `json:"pid"` Name string `json:"name"` Status int `json:"conn_map,string"` ConnFail int `json:"conn_fail,string"` Suspend int `json:"suspend,string"` FriendCode string `json:"fc"` VR int `json:"ev,string"` BR int `json:"eb,string"` Miis []MiiData `json:"mii"` } type MiiData struct { Face string `json:"data"` Name string `json:"name"` }
Sorry, something went wrong.
No branches or pull requests
room stats retrievable via https://{somethingdomain}/api/groups
The text was updated successfully, but these errors were encountered: