package main import ( "os" "time" "git.thisco.de/vbatts/fuzz-walker/walker" ) // NewFuzzer creates the fuzzer for this plugin func NewFuzzer() (walker.Fuzzer, error) { return &myFuzzer{}, nil } type myFuzzer struct{} func (mf myFuzzer) Name() string { return "chmodFuzz" } func (mf myFuzzer) Func(path string, info os.FileInfo, timeout time.Duration) error { return nil }