This commit is contained in:
Christian Nieves
2023-07-12 17:34:35 -05:00
parent 74b67313e7
commit d0dc725d64
4 changed files with 53 additions and 7 deletions

View File

@ -25,7 +25,7 @@ func main() {
defer jsonFile.Close()
byteValue, _ := ioutil.ReadAll(jsonFile)
c := []types.Card{}
c := []types.HallOfBeornCard{}
json.Unmarshal(byteValue, &c)
spew.Dump(c)
}