2022-03-15 04:43:03 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
type Template struct {
|
2022-03-15 16:27:52 +00:00
|
|
|
Id string
|
|
|
|
|
Test string
|
2022-03-15 04:43:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (t *Template) GetType() string {
|
2022-03-15 16:27:52 +00:00
|
|
|
return "template"
|
2022-03-15 04:43:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (t *Template) GetId() string {
|
2022-03-15 16:27:52 +00:00
|
|
|
return t.Id
|
2022-03-15 04:43:03 +00:00
|
|
|
}
|