```package main import ( "context" "encoding/json" "fmt" "io" "net/http" shell "github.com/ipfs/go-ipfs-http-client" ) func main() { fmt.Println("Yo") ctx := context.Background() req := shell.NewRequest(ctx, "localhost:5001", "get", "QmZtmD2qt6fJot32nabSP3CUjicnypEBz7bHVDhPQt9aAy") c := &http.Client{} resp, _ := req.Send(c) p := []byte("") n, err := io.ReadFull(resp.Output, p) fmt.Println(err) fmt.Println(n) output := json.NewDecoder(resp.Output) fmt.Println(output.Decode) }```