どうもてぃ。 前回のつづきで備忘録。 smot93516.hatenablog.jp mapと構造体を準備 type Addr struct { PostalCode int Country string } type User struct { Name string Age int Address Addr Email string } user := map[string]interface{}{ "Name": "motty", "Age": 30, "Address": map[string]interface{}{ "PostalCode": 1234567, "Country":…