()
| 46 | } |
| 47 | |
| 48 | func (d *Destination) SetDefaults() { |
| 49 | d.Metadata.SetDefaults() |
| 50 | if d.Spec == nil { |
| 51 | d.Spec = make(map[string]any) |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | func (d *Destination) UnmarshalSpec(out any) error { |
| 56 | b, err := json.Marshal(d.Spec) |
no outgoing calls