ooni-probe-cli/internal/cli/run/run.go
2018-02-07 20:02:18 +02:00

19 lines
433 B
Go

package run
import (
"github.com/alecthomas/kingpin"
"github.com/openobservatory/gooni/internal/cli/root"
"github.com/openobservatory/gooni/internal/util"
)
func init() {
cmd := root.Command("run", "Run a test group or OONI Run link")
nettestGroup := cmd.Arg("name", "the nettest group to run").Required().String()
cmd.Action(func(_ *kingpin.ParseContext) error {
util.Log("Starting %s", nettestGroup)
return nil
})
}