Some initial stuff

This commit is contained in:
Caleb Gardner
2024-11-19 07:26:37 -06:00
parent 9edd91148a
commit 687fbd7e65
14 changed files with 1135 additions and 889 deletions
+8
View File
@@ -0,0 +1,8 @@
package blog
type BlogList struct {
ID string `json:"id" bson:"_id"`
Title string `json:"title" bson:"title"`
Draft bool `json:"draft" bson:"draft"`
CreateTime int64 `json:"createTime" bson:"createTime"`
}