-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
1 parent
d84cf5b
commit 85b16c8
Showing
9 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package mlablocate_test | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"net/http" | ||
|
||
"github.com/apex/log" | ||
"github.com/ooni/probe-cli/v3/internal/mlablocate" | ||
) | ||
|
||
func Example_usage() { | ||
clnt := mlablocate.NewClient(http.DefaultClient, log.Log, "miniooni/0.1.0-dev") | ||
result, err := clnt.Query(context.Background(), "neubot/dash") | ||
if err != nil { | ||
log.WithError(err).Fatal("clnt.Query failed") | ||
} | ||
fmt.Printf("%s\n", result.FQDN) | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
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) | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.