Files
old-vegeta/lib/reporter.go

12 lines
168 B
Go
Raw Normal View History

2013-08-17 19:52:29 +02:00
package vegeta
import (
"io"
)
// Reporter represents any reporter of the results of the test
type Reporter interface {
Report(io.Writer) error
2013-09-09 00:56:38 +01:00
add(res *Result)
2013-08-17 19:52:29 +02:00
}