0c5b6aa37c
This is the command I used: ``` rg 'github.com/openobservatory/gooni' --files-with-matches \ | xargs sed -i '' 's/github.com\/openobservatory\/gooni/github.com\/ooni\/probe-cli/g' ```
17 lines
296 B
Go
17 lines
296 B
Go
package nettest
|
|
|
|
import (
|
|
"github.com/alecthomas/kingpin"
|
|
"github.com/apex/log"
|
|
"github.com/ooni/probe-cli/internal/cli/root"
|
|
)
|
|
|
|
func init() {
|
|
cmd := root.Command("nettest", "Run a specific nettest")
|
|
|
|
cmd.Action(func(_ *kingpin.ParseContext) error {
|
|
log.Info("Nettest")
|
|
return nil
|
|
})
|
|
}
|