package grils import ( "database/sql" "github.com/lib/pq" "time" ) type DataSource int const ( DataSourceACD DataSource = iota DataSourceAniDB ) type Gril struct { ID int KanjiName string RomajiName string OtherNames []string Age sql.NullInt64 Birthday pq.NullTime Tags []string ForeignIDs map[DataSource]int UpdatedAt time.Time Lists []int }