12 lines
115 B
Go
12 lines
115 B
Go
package models
|
|
|
|
var Entities = []any{
|
|
&Post{},
|
|
}
|
|
|
|
type Post struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
Text string
|
|
}
|
|
|