ffuf/pkg/runner/runner.go
2018-11-08 11:26:32 +02:00

10 lines
210 B
Go

package runner
import (
"github.com/ffuf/ffuf/pkg/ffuf"
)
func NewRunnerByName(name string, conf *ffuf.Config) ffuf.RunnerProvider {
// We have only one Runner at the moment
return NewSimpleRunner(conf)
}