go-learn/domain/post.go

8 lines
77 B
Go

package domain
type Post struct {
ID uint
Title string
Text string
}