package cli

import "encoding/json"

// jsonImpl is the actual json unmarshal call. Isolated so we can swap to a
// tolerant parser in the future.
func jsonImpl(raw []byte, v any) error {
	return json.Unmarshal(raw, v)
}
