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

7 lines
171 B

package models
// BaseAPIResponse is a simple response to API requests.
type BaseAPIResponse struct {
Success bool `json:"success"`
Message string `json:"message"`
}