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

13 lines
130 B
Go
Raw Normal View History

2023-02-05 04:48:53 +04:00
package mindflow
import (
"time"
)
type Post struct {
Category string
Date time.Time
Title string
Body string
}