stubbing out more plugins

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2018-06-06 11:21:08 -04:00
parent 0f0ce2af37
commit c02aa0e395
Signed by: vbatts
GPG key ID: 10937E57733F1362
7 changed files with 171 additions and 62 deletions

View file

@ -0,0 +1,23 @@
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
}