Skip to content

Instantly share code, notes, and snippets.

@irmorteza
irmorteza / struct-sample.go
Created July 24, 2021 11:18
go sample: how to convert Struct to map or json and vice versa
package main
import (
"encoding/json"
"fmt"
)
type MyStruct struct {
Id string `json:"id"`
Name string `json:"name"`