Files
config/provider/dasel/json/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
284 B
Go

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