JSON in go
JSON (JavaScript Object Notation) is a lightweight data format used to store and exchange data between a client and a server.
Go provides the encoding/json package to easily work with JSON data.
Marshalling:
package main
import (
"encoding/json"...
priyanshsao.hashnode.dev5 min read