ffuff/pkg/ffuf/progress.go
2019-12-31 14:19:27 +02:00

15 lines
161 B
Go

package ffuf
import (
"time"
)
type Progress struct {
StartedAt time.Time
ReqCount int
ReqTotal int
QueuePos int
QueueTotal int
ErrorCount int
}