11 lines
234 B
Go
11 lines
234 B
Go
package runner
|
|
|
|
import (
|
|
"github.com/ffuf/ffuf/v2/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)
|
|
}
|