package responses import "time" type PostResponse struct { Id string `json:"id"` UserId string `json:"userId"` Title string `json:"title"` Description string `json:"description"` Content string `json:"content"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` Tags []string `json:"tags"` Category string `json:"category"` Username string `json:"username"` } type PostResponseList []*PostResponse