ooni-probe-cli/cmd/ooniprobe/internal/nettests/dash.go

15 lines
266 B
Go

package nettests
// Dash test implementation
type Dash struct {
}
// Run starts the test
func (d Dash) Run(ctl *Controller) error {
builder, err := ctl.Session.NewExperimentBuilder("dash")
if err != nil {
return err
}
return ctl.Run(builder, []string{""})
}