12 lines
168 B
Go
12 lines
168 B
Go
package vegeta
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Reporter represents any reporter of the results of the test
|
|
type Reporter interface {
|
|
Report(io.Writer) error
|
|
add(res *result)
|
|
}
|