15 lines
179 B
Go
15 lines
179 B
Go
package main
|
|
|
|
type Template struct {
|
|
Id string
|
|
Test string
|
|
}
|
|
|
|
func (t *Template) GetType() string {
|
|
return "template"
|
|
}
|
|
|
|
func (t *Template) GetId() string {
|
|
return t.Id
|
|
}
|