在Golang中打印解码的JSON

I am very new to Go / programming in general - having just picked it up whilst messing about creating my own crypto currency portfolio web site.

I am struggling printing to the web server output. If I used Printf - it prints to console but as soon as I use Fprintf to print to the web app, I get a number of errors which I can't seem to solve.

Could someone walk me through it?

package main

import (
        "encoding/json"
        "fmt"
        "log"
        "net/http"
)

type Obsidian []struct {
    PriceUsd         string `json:"price_usd"`
    PriceBtc         string `json:"price_btc"`
}

func webserver(w http.ResponseWriter, r *http.Request) {
    url := "https://api.coinmarketcap.com/v1/ticker/obsidian/"

    req, err := http.NewRequest("GET", url, nil)
    if err != nil {
            log.Fatal("NewRequest: ", err)
            return
    }

    client := &http.Client{}

    resp, err := client.Do(req)
    if err != nil {
            log.Fatal("Do: ", err)
            return
    }
    defer resp.Body.Close()

    var record Obsidian
    if err := json.NewDecoder(resp.Body).Decode(&record); err != nil {
            log.Println(err)
    }

    fmt.Printf("%+v", record)
}

func main() {
    http.HandleFunc("/test", webserver)
    http.ListenAndServe(":8001", nil)
}

I have tried to replace:

fmt.Printf("%+v", record)

with:

fmt.Fprintf("%+v", record)

and receive the following errors:

./test.go:54:21: cannot use "%+v" (type string) as type io.Writer in argument to fmt.Fprintf:
    string does not implement io.Writer (missing Write method)
./test.go:54:21: cannot use record (type Obsidian) as type string in argument to fmt.Fprintf

Thanks to @MiloChrisstiansen

fmt.Fprintf(w, "%+v", record)

You could also use

w.Write([]byte(record))