mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-28 06:29:29 +01:00
12 lines
157 B
Go
Vendored
12 lines
157 B
Go
Vendored
//go:build gofuzz
|
|
// +build gofuzz
|
|
|
|
package httprule
|
|
|
|
func Fuzz(data []byte) int {
|
|
if _, err := Parse(string(data)); err != nil {
|
|
return 0
|
|
}
|
|
return 0
|
|
}
|