first commit

This commit is contained in:
Antoine BRYJA
2025-11-04 22:55:03 +01:00
commit 49c56e1479
25 changed files with 5147 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package models
import "gorm.io/gorm"
type User struct {
gorm.Model
Name string `json:"name"`
Email string `json:"email" gorm:"unique"`
}