Created
April 15, 2022 08:45
-
-
Save Develp10/fb64ff3c9f4ba3ecd343109ed5b890bb 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
| 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