ooni-probe-cli/internal/mlablocatev2/example_test.go
Simone Basso 85b16c8bd2
refactor(mlablocate*): move from i/e/internal to internal (#385)
We've been flattening the package structure for some time now.

While there, add very basic examples.
2021-06-15 19:51:03 +02:00

20 lines
411 B
Go

package mlablocatev2_test
import (
"context"
"fmt"
"net/http"
"github.com/apex/log"
"github.com/ooni/probe-cli/v3/internal/mlablocatev2"
)
func Example_usage() {
clnt := mlablocatev2.NewClient(http.DefaultClient, log.Log, "miniooni/0.1.0-dev")
results, err := clnt.QueryNDT7(context.Background())
if err != nil {
log.WithError(err).Fatal("clnt.QueryNDT7 failed")
}
fmt.Printf("%+v\n", results)
}