ffuf/pkg/runner/runner.go

11 lines
210 B
Go
Raw Normal View History

2018-11-08 09:26:32 +00:00
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)
}