diff --git a/examples/tnd/main.go b/examples/tnd/main.go index 73d8fc5..8f49203 100644 --- a/examples/tnd/main.go +++ b/examples/tnd/main.go @@ -51,7 +51,9 @@ func main() { t.SetServers(httpsServers) // start tnd - t.Start() + if err := t.Start(); err != nil { + log.Fatal(err) + } for r := range t.Results() { log.WithField("trusted", r).Info("TND result") }