Initial commit

This commit is contained in:
Lizandro Guarnizo
2025-02-06 14:22:29 -05:00
commit 6d8f1bcd6f
452 changed files with 250835 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package models
import (
"gorm.io/gorm"
)
type UserMeta struct {
*gorm.Model
UserID uint `gorm:"user_id" json:"user_id"`
Key uint `gorm:"key" json:"key"`
Value uint `gorm:"value" json:"value"`
}