32 lines
634 B
Go
32 lines
634 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
"github.com/squk/lotr/cmd/beornextract/types"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("LOTR CARD PARSE")
|
|
|
|
// Open our jsonFile
|
|
jsonFile, err := os.Open("./data/Bot.Cards.json")
|
|
// if we os.Open returns an error then handle it
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
fmt.Println("Successfully Opened users.json")
|
|
// defer the closing of our jsonFile so that we can parse it later on
|
|
defer jsonFile.Close()
|
|
|
|
byteValue, _ := ioutil.ReadAll(jsonFile)
|
|
c := []types.HallOfBeornCard{}
|
|
json.Unmarshal(byteValue, &c)
|
|
spew.Dump(c)
|
|
}
|