package main import ( "time" ) type Platform struct { ID int Name string URL string } type Language struct { ID int Name string } type UpdatePeriod struct { ID int Name string } type Owner struct { ID int Name string URL string Platform *Platform } type Entry struct { ID int Title string Synopsis string Owner *Owner Platform *Platform URL string Language *Language Stars int NaturalLanguage string UpdatePeriod *UpdatePeriod Created_At time.Time }