ffuff/pkg/runner/runner.go
2023-02-06 11:20:28 +02:00

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)
}