1
0
dwelling-home/pkg/mindflow/post.go

13 lines
130 B
Go

package mindflow
import (
"time"
)
type Post struct {
Category string
Date time.Time
Title string
Body string
}