1
0
Fork 0

Post type for mindflow.

This commit is contained in:
Alexander Andreev 2023-02-05 04:48:53 +04:00
parent 5df7d022e5
commit 1dc390a967
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 12 additions and 0 deletions

12
pkg/mindflow/post.go Normal file
View File

@ -0,0 +1,12 @@
package mindflow
import (
"time"
)
type Post struct {
Category string
Date time.Time
Title string
Body string
}