Created
September 10, 2019 06:57
-
-
Save doorbash/1ab17f58bccc0add768d930df01edb2f to your computer and use it in GitHub Desktop.
github.com/doorbash/my-api/model/user.go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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