ffuf/pkg/input/input.go
2018-11-08 11:26:32 +02:00

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)
}