mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-03 02:39:39 +00:00
10 lines
138 B
Go
10 lines
138 B
Go
// +build gofuzz
|
|
|
|
package configs
|
|
|
|
func FuzzUnmarshalJSON(data []byte) int {
|
|
hooks := Hooks{}
|
|
_ = hooks.UnmarshalJSON(data)
|
|
return 1
|
|
}
|