Created
September 12, 2012 19:24
-
-
Save collinvandyck/3709266 to your computer and use it in GitHub Desktop.
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
| type User struct { | |
| Id string `json:"id"` | |
| Email string `json:"email,omitempty"` | |
| CreatedAt time.Time `json:"created_at"` | |
| UpdatedAt time.Time `json:"updated_at"` | |
| Name string `json:"name,omitempty"` | |
| Admin bool `json:"admin"` | |
| Active bool `json:"-"` | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment