Skip to content

Instantly share code, notes, and snippets.

@Develp10
Created April 15, 2022 08:45
Show Gist options
  • Select an option

  • Save Develp10/fb64ff3c9f4ba3ecd343109ed5b890bb to your computer and use it in GitHub Desktop.

Select an option

Save Develp10/fb64ff3c9f4ba3ecd343109ed5b890bb to your computer and use it in GitHub Desktop.
package models
type Product struct {
Id int `json:"id" gorm:"primaryKey"`
Name string `json:"name"`
Stock int32 `json:"stock"`
Price int32 `json:"price"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment