Skip to content

Instantly share code, notes, and snippets.

@vkorbes
Created March 15, 2018 00:51
Show Gist options
  • Select an option

  • Save vkorbes/1add6943455586c0a16cfa034221c46b to your computer and use it in GitHub Desktop.

Select an option

Save vkorbes/1add6943455586c0a16cfa034221c46b to your computer and use it in GitHub Desktop.
type Deck struct {
DeckID bson.ObjectId `json:"id" bson:"_id,omitempty"`
LastShownIndex int `json:"lastshownindex" bson:"lastshownindex"`
Cards []Card `json:"cards" bson:"cards"`
}
type Card struct {
Suit string `json:"suit" bson:"suit"`
Number string `json:"number" bson:"number"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment