#XMLRPC Implementation in #Golang: Figured out a way to implement custom Unmarshaler for dynamic values with user-given datatypes. I'm kinda proud of it 😅.
I implemented the decoding for primitive datatypes, just need to implement structs and arrays now.
BTW because of this little project, I got a pretty good exposure to reflect package now. Honestly I was always scared of using it because a lot of methods default to panic and do not return errors but I learned that panics can be avoided easily by just reading the documentation.
#Golang