Files
checky/template.go

15 lines
179 B
Go
Raw Normal View History

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