15 lines
161 B
Go
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
|
|
}
|