Skip to content

Instantly share code, notes, and snippets.

@JNaeemGitonga
Created December 29, 2019 20:17
Show Gist options
  • Save JNaeemGitonga/622fe484fe00cb101f52547528f07bef to your computer and use it in GitHub Desktop.
Save JNaeemGitonga/622fe484fe00cb101f52547528f07bef to your computer and use it in GitHub Desktop.
Story struct
type Story struct {
ID primitive.ObjectID `json:"_id,omitempty" bson:"_id,omitempty"`
Author string `json:"author,,omitempty" bson:"author,,omitempty"`
Title string `json:"title,,omitempty" bson:"title,,omitempty"`
Content string `json:"content,,omitempty" bson:"content,,omitempty"`
Likes int `json:"likes,,omitempty" bson:"likes,,omitempty"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment