eyespot/interfaces.go

12 lines
170 B
Go

package eyespot
type Result struct {
Passed bool
}
type Test interface {
GetTestDescription() string
Run(protocol string, host string) (map[string]Result, error)
}