Skip to content

Instantly share code, notes, and snippets.

@doorbash
Created September 10, 2019 06:57
Show Gist options
  • Save doorbash/1ab17f58bccc0add768d930df01edb2f to your computer and use it in GitHub Desktop.
Save doorbash/1ab17f58bccc0add768d930df01edb2f to your computer and use it in GitHub Desktop.
github.com/doorbash/my-api/model/user.go
package model
type User struct {
Id string `json:"id"`
Name string `json:"name"`
Coins int32 `json:"coins"`
Emojis []int32 `json:"emojis"`
CreatedAt int64 `json:"createdAt"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment