mirror of
https://github.com/ffuf/ffuf
synced 2024-12-04 09:09:13 +00:00
b0a632e6cd
* Replay matches using a custom proxy * Add changelog entry
10 lines
231 B
Go
10 lines
231 B
Go
package runner
|
|
|
|
import (
|
|
"github.com/ffuf/ffuf/pkg/ffuf"
|
|
)
|
|
|
|
func NewRunnerByName(name string, conf *ffuf.Config, replay bool) ffuf.RunnerProvider {
|
|
// We have only one Runner at the moment
|
|
return NewSimpleRunner(conf, replay)
|
|
}
|