blob: 001cf1dee458b2ba6df5a55d84b13765351ccf8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//go:build gofuzz
package chaos
import (
"github.com/coredns/coredns/plugin/pkg/fuzz"
)
// Fuzz fuzzes cache.
func Fuzz(data []byte) int {
c := Chaos{}
return fuzz.Do(c, data)
}
|