This repository has been archived on 2026-09-05. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
gotoolkit/model/template.go
2024-11-20 23:21:03 +01:00

5 lines
96 B
Go

package model
type TemplateEngine interface {
Render(name string, data any) ([]byte, error)
}