Files
old-backend/models/text_template.go

19 lines
303 B
Go
Raw Normal View History

2023-09-27 08:04:50 +02:00
package models
import "github.com/jinzhu/gorm"
type TextTemplate struct {
gorm.Model
Value string
}
func (TextTemplate) Update() (bool, error) {
return false, nil
}
func (TextTemplate) Create() (bool, error) {
return false, nil
}
func (TextTemplate) Delete() (bool, error) {
return false, nil
}