feat: handle template build error

This commit is contained in:
2024-12-02 13:45:49 +00:00
parent 8a8582e06e
commit dc97c2c498
9 changed files with 123 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
package template
type errBadTemplate struct {
message string
}
func (err *errBadTemplate) Error() string {
return err.message
}