12 lines
151 B
Go
12 lines
151 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"github.com/jinzhu/gorm"
|
||
|
)
|
||
|
|
||
|
type Post struct {
|
||
|
gorm.Model
|
||
|
Title string `json:"title"`
|
||
|
Content string `json:"content"`
|
||
|
}
|