package fuzzconfig import ( "github.com/hashicorp/hcl/v2/json" ) func Fuzz(data []byte) int { _, diags := json.Parse(data, "") if diags.HasErrors() { return 0 } return 1 }