moved to gorm

This commit is contained in:
Bronku 2025-07-07 11:30:28 +02:00
parent 66884c64bb
commit a074f264df
30 changed files with 247 additions and 1040 deletions

9
models/product.go Normal file
View file

@ -0,0 +1,9 @@
package models
import "gorm.io/gorm"
type Product struct {
gorm.Model
Name string
Price uint
}