Take control over your live stream video by running it yourself. Streaming + chat out of the box.
 
 
 
 
 
 

7 lines
207 B

package controllers
// PaginatedResponse is a structure for returning a total count with results.
type PaginatedResponse struct {
Total int `json:"total"`
Results interface{} `json:"results"`
}