transfer.sh/vendor/github.com/PuerkitoBio/ghost/templates/gotpl/gotpl.go

20 lines
409 B
Go
Raw Normal View History

2016-07-11 22:15:19 +02:00
package gotpl
import (
"html/template"
"github.com/PuerkitoBio/ghost/templates"
)
// The template compiler for native Go templates.
type GoTemplateCompiler struct{}
// Implementation of the TemplateCompiler interface.
func (this *GoTemplateCompiler) Compile(f string) (templates.Templater, error) {
return template.ParseFiles(f)
}
func init() {
templates.Register(".tmpl", new(GoTemplateCompiler))
}