ffuf/pkg/input/input.go

11 lines
232 B
Go
Raw Normal View History

2018-11-08 09:26:32 +00:00
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)
}