ADDED:
* tplx, for one-shotting/shortcutting templating
This commit is contained in:
brent saner
2025-12-23 17:26:50 -05:00
parent 145c32268e
commit 006cf39fa1
7 changed files with 377 additions and 0 deletions

9
tplx/errs.go Normal file
View File

@@ -0,0 +1,9 @@
package tplx
import (
`errors`
)
var (
ErrInvalidTplType = errors.New("unknown/invalid template type")
)