Pracownia.Programowania/models/post.go
2018-12-10 19:48:22 +01:00

12 lines
170 B
Go

package models
type Psot struct {
Id string
Title string
Content string
}
func NewPost(id, title, content string) *Post {
return &Post{id, title, content}
}