Files
checky/template.go
2022-03-15 16:27:52 +00:00

15 lines
177 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
}