mirror of
https://github.com/ffuf/ffuf
synced 2025-01-10 02:08:49 +00:00
10 lines
232 B
Go
10 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)
|
|
}
|