Files
config/provider/dasel/hcl/provider.go
andrey 7ca860c127
All checks were successful
Go Action / goaction (pull_request) Successful in 38s
update dasel provider
2025-12-27 16:30:24 +03:00

14 lines
263 B
Go

package hcl
import (
"github.com/tomwright/dasel/v3/parsing/hcl"
"gitoa.ru/go-4devs/config/provider/dasel"
)
const Name = "dasel:hcl"
//nolint:wrapcheck
func New(data []byte) (dasel.Provider, error) {
return dasel.New(data, hcl.HCL, dasel.WithName(Name))
}