Upstream sync
This commit is contained in:
18
models/text_template.go
Normal file
18
models/text_template.go
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user