mirror of
https://github.com/ffuf/ffuf
synced 2024-12-04 00:59:14 +00:00
11 lines
210 B
Go
11 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)
|
||
|
}
|