mirror of
https://github.com/ffuf/ffuf
synced 2025-01-25 01:15:00 +00:00
11 lines
232 B
Go
11 lines
232 B
Go
|
package input
|
||
|
|
||
|
import (
|
||
|
"github.com/ffuf/ffuf/pkg/ffuf"
|
||
|
)
|
||
|
|
||
|
func NewInputProviderByName(name string, conf *ffuf.Config) (ffuf.InputProvider, error) {
|
||
|
// We have only one inputprovider at the moment
|
||
|
return NewWordlistInput(conf)
|
||
|
}
|