ffuff/pkg/ffuf/progress.go

13 lines
129 B
Go

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