package view type View struct { SiteTitle string } func NewView() *View { return &View{ SiteTitle: "FW - framework on golang", } }