Files
lti-api/tools/templates/model.tmpl
T
2025-09-25 10:47:28 +07:00

14 lines
225 B
Cheetah

{{define "model"}}package model
import (
"time"
)
type {{Pascal .Entity}} struct {
Id uint `gorm:"primaryKey"`
Name string `gorm:"not null"`
CreatedAt time.Time
UpdatedAt time.Time
}
{{end}}