pink_fox/application/inner/view/view.go

12 lines
138 B
Go

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