mirror of
https://github.com/ffuf/ffuf
synced 2024-12-03 00:29:15 +00:00
10 lines
210 B
Go
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)
|
|
}
|