diff --git a/pkg/mindflow/post.go b/pkg/mindflow/post.go new file mode 100644 index 0000000..5295753 --- /dev/null +++ b/pkg/mindflow/post.go @@ -0,0 +1,12 @@ +package mindflow + +import ( + "time" +) + +type Post struct { + Category string + Date time.Time + Title string + Body string +}