buildr/modules/helpers/hclhelpers/registration.go
2023-03-15 18:56:38 +01:00

10 lines
157 B
Go

package hclhelpers
import (
"github.com/hashicorp/hcl/v2"
)
func RegisterInContext(evalCtx *hcl.EvalContext) {
evalCtx.Functions["toset"] = HclToSet()
}