(raw string, label string)
| 1144 | } |
| 1145 | |
| 1146 | func parseOptionalBridgeJSONWithLabel(raw string, label string) (*json.RawMessage, error) { |
| 1147 | trimmed := strings.TrimSpace(raw) |
| 1148 | if trimmed == "" { |
| 1149 | return nil, nil |
| 1150 | } |
| 1151 | return parseRequiredBridgeJSONWithLabel(trimmed, label) |
| 1152 | } |
| 1153 | |
| 1154 | func parseRequiredBridgeJSON(raw string) (*json.RawMessage, error) { |
| 1155 | return parseRequiredBridgeJSONWithLabel(raw, "delivery defaults") |
no test coverage detected