Skip to content

Instantly share code, notes, and snippets.

@collinvandyck
Created September 12, 2012 19:24
Show Gist options
  • Select an option

  • Save collinvandyck/3709266 to your computer and use it in GitHub Desktop.

Select an option

Save collinvandyck/3709266 to your computer and use it in GitHub Desktop.
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