go-learn/domain/post.go

8 lines
77 B
Go
Raw Normal View History

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