13 lines
129 B
Go
13 lines
129 B
Go
package ffuf
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Progress struct {
|
|
StartedAt time.Time
|
|
ReqCount int
|
|
ReqTotal int
|
|
ErrorCount int
|
|
}
|