Override Golang JSON Marshalling
We can override Golang JSON marshalling and unmarshalling to encode and decode JSON payload even if the payload does not match the object’s data …
Read ArticleWe can override Golang JSON marshalling and unmarshalling to encode and decode JSON payload even if the payload does not match the object’s data …
Read ArticleSentinel errors use specific values to denote an error. This usually equates to performing an equality check to determine the error. Dave Cheney wrote …
Read ArticleContext in Golang can be use to carry deadline, cancellation signals and other request-scoped values across API boundaries and between process. …
Read ArticleError handling and management have always been a hot topic for debate in Golang. Software developers coming from different programming background has …
Read Article