package models type Post struct { Id string Title string ContentHtml string ContentMd string } func NewPost(id, title, contentHtml, contentMd string) *Post { return &Post{id, title, contentHtml, contentMd} }