This repository has been archived on 2025-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
boilerplate/internal/models/models.go
2025-01-06 00:09:51 +07:00

16 lines
195 B
Go

package models
var Entities = []any{
&Post{}, &Author{},
}
type Post struct {
Id uint `gorm:"primaryKey"`
Text string
}
type Author struct {
Id uint `gorm:"primaryKey"`
Name string
}