package main import ( "time" ) type Comment struct { User string `json:"CommentUser"` Body string `json:"CommentBody"` Created time.Time `json:"CommentCreated"` }