Kepler core
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.
 
 

25 lines
532 B

package published
import (
"cygnux/kepler/models"
"cygnux/kepler/models/metas"
)
const PUBLISHEDLIVECATEGORY = "published_live_categories"
type PublishedLiveCategory struct {
metas.LiveCategory
}
const PUBLISHEDLIVEPROGRAM = "published_live_programs"
type PublishedLiveProgram struct {
metas.LiveProgram
Categories models.HSTOREDictionary `json:"categories,omitempty"`
}
const PUBLISHEDLIVEEVENT = "published_live_events"
type PublishedLiveEvent struct {
metas.LiveEvent
}