Files
go-crud/models/postModel.go
2024-02-21 18:40:49 -06:00

10 lines
100 B
Go

package models
import "gorm.io/gorm"
type Post struct {
gorm.Model
Title string
Body string
}