diff options
| author | Jeff Carr <[email protected]> | 2024-10-26 20:10:25 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-26 20:10:25 -0500 |
| commit | 8e33396b4afd104bc1af5265d4ab306f273af554 (patch) | |
| tree | 7de4dc943b806ee77363e40497e7fb1d12f576b5 | |
| parent | a4e6d7a58b90e80f45c0464afcc507635c3a4375 (diff) | |
need this marshal for start
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | config.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -379,6 +379,10 @@ func (d *Droplets) UnmarshalJSON(data []byte) error { return protojson.Unmarshal(data, d) } +func (d *Droplet) UnmarshalJSON(data []byte) error { + return protojson.Unmarshal(data, d) +} + func (e *Events) UnmarshalJSON(data []byte) error { return protojson.Unmarshal(data, e) } |
