default to compile in, but also allow plugins
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
4e78ffab6a
commit
66e91e3ddf
13 changed files with 170 additions and 63 deletions
17
walker/walkers/chmodFuzz/fuzz.go
Normal file
17
walker/walkers/chmodFuzz/fuzz.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
package chmodFuzz
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"git.thisco.de/vbatts/fuzz-walker/walker"
|
||||
)
|
||||
|
||||
func init() {
|
||||
walker.RegisterFuzzFunc(Name, FuzzFunc)
|
||||
}
|
||||
|
||||
const Name = "chmodFuzz"
|
||||
|
||||
func FuzzFunc(path string, info os.FileInfo) error {
|
||||
return nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue