Added Gorm to project

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent fe303cb778
commit 819baeb0c3
7 changed files with 53 additions and 0 deletions

11
models/project.go Normal file
View File

@ -0,0 +1,11 @@
package models
import (
"gorm.io/gorm"
)
type Project struct {
gorm.Model
Name string
Description string
}