やりたいこと ローカルにある JSON を Go の構造体として読み込む ローカルにある JSON ファイル (sample.json) { "posts": [ { "id": 1, "title": "Post 1" }, { "id": 2, "title": "Post 2" }, { "id": 3, "title": "Post 3" } ], "comments": [ { "id": 1, "body": "some comment", "postId": 1 }, { "id": 2, "body": "some comment", "postId": 1 } ] } type Post struct { ID int `json:"id"` Title string `json:"title"` } type Comment struct { ID int `json: