databricks-cli/libs/template/helpers.go

15 lines
219 B
Go
Raw Normal View History

2023-05-17 09:53:13 +00:00
package template
2023-05-15 09:25:01 +00:00
import (
"errors"
"text/template"
)
2023-05-17 13:33:04 +00:00
var errSkipThisFile = errors.New("skip generating this file")
2023-05-15 09:25:01 +00:00
var HelperFuncs = template.FuncMap{
"skipThisFile": func() error {
2023-05-17 13:33:04 +00:00
panic(errSkipThisFile)
2023-05-15 09:25:01 +00:00
},
}