| 12 | var _ Printer = &JSONPathPrinter{} |
| 13 | |
| 14 | type JSONPathPrinter struct { |
| 15 | rawTemplate string |
| 16 | JSONPath *jsonpath.JSONPath |
| 17 | } |
| 18 | |
| 19 | func NewJSONPathPrinter(tmpl string) (*JSONPathPrinter, error) { |
| 20 | j := jsonpath.New("out") |
nothing calls this directly
no outgoing calls
no test coverage detected