ooni-probe-cli/nettests/groups/groups.go

29 lines
666 B
Go
Raw Normal View History

2018-02-13 10:48:46 +01:00
package groups
import (
"github.com/openobservatory/gooni/nettests"
"github.com/openobservatory/gooni/nettests/websites"
)
// NettestGroups that can be run by the user
var NettestGroups = map[string]nettests.NettestGroup{
"websites": nettests.NettestGroup{
Label: "Websites",
Nettests: []nettests.Nettest{
websites.WebConnectivity{},
},
},
"performance": nettests.NettestGroup{
Label: "Performance",
Nettests: []nettests.Nettest{},
},
"middleboxes": nettests.NettestGroup{
Label: "Middleboxes",
Nettests: []nettests.Nettest{},
},
"im": nettests.NettestGroup{
Label: "Instant Messaging",
Nettests: []nettests.Nettest{},
},
}