ironcore-dev / metalbond

Route reflector for IronCore Infrastructure Overlay Network
Apache License 2.0
0 stars 1 forks source link

add marshaler methods for Destination struct #93

Closed vlorinc closed 8 months ago

vlorinc commented 8 months ago

Fixes #92

Issue caused by changing key of map from string to struct of type Destination which didn't implement encoding.TextMarshaler so json was not able to marshal this struct. MarshalText and UnmarshalText methods for Destination were added to fix this problem.