package grils import ( "time" ) type DataSource int const ( DataSourceACD DataSource = iota DataSourceAniDB ) type Gril struct { ID int KanjiName string RomajiName string OtherNames []string Age int Birthday time.Time Tags []string ForeignIDs map[DataSource]int }