Added Gorm to project
This commit is contained in:
11
models/project.go
Normal file
11
models/project.go
Normal file
@ -0,0 +1,11 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Project struct {
|
||||
gorm.Model
|
||||
Name string
|
||||
Description string
|
||||
}
|
Reference in New Issue
Block a user