Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Created June 30, 2019 16:32
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 mottet-dev/2699f26cfd99d0bfb0aa133f73b63ec9 to your computer and use it in GitHub Desktop.
Save mottet-dev/2699f26cfd99d0bfb0aa133f73b63ec9 to your computer and use it in GitHub Desktop.
Gorilla Mux - Ingredients
package model
type Ingredient struct {
ID int `json:"id"`
Name string `json:"name"`
Price float32 `json:"price"`
Quantity int `json:"quantity"`
Unit string `json:"unit"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment