Skip to content

Instantly share code, notes, and snippets.

@crissilvaeng
Created November 1, 2016 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crissilvaeng/14f5963e897bc0853c9a187a2c717acf to your computer and use it in GitHub Desktop.
Save crissilvaeng/14f5963e897bc0853c9a187a2c717acf to your computer and use it in GitHub Desktop.
type Party struct {
ID int `db:"id"`
Description string `db:"description"`
StartAt time.Time `db:"start_at"`
EndAt time.Time `db:"end_at"`
Dangerous bool `db:"dangerous"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment