package data import ( "time" ) type Article struct { Title string Created time.Time Desc string Content string Tags []string Published bool ID int64 AuthorID int64 }