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

15 lines
270 B
Go
Raw Normal View History

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