HarithaHarman

Results 1 issues of HarithaHarman

[input.json](https://github.com/linkedin/goavro/files/12929937/input.json) package main import ( "bytes" "encoding/json" "fmt" "io/ioutil" "os" "github.com/linkedin/goavro/v2" ) func main() { jsonFile, err := os.Open("input.json") if err != nil { fmt.Println(err) } defer jsonFile.Close() // read...