7 lines
110 B
Go
7 lines
110 B
Go
package main
|
|
|
|
type Status struct {
|
|
Online bool `json:"online"`
|
|
ViewerCount int `json:"viewerCount"`
|
|
}
|