Codebase list ffuf / 2c91c0b pkg / ffuf / progress.go
2c91c0b

Tree @2c91c0b (Download .tar.gz)

progress.go @2c91c0braw · history · blame

package ffuf

import (
	"time"
)

type Progress struct {
	StartedAt  time.Time
	ReqCount   int
	ReqTotal   int
	QueuePos   int
	QueueTotal int
	ErrorCount int
}