...

Source file src/github.com/grpc-ecosystem/grpc-gateway/v2/internal/httprule/fuzz.go

Documentation: github.com/grpc-ecosystem/grpc-gateway/v2/internal/httprule

     1  //go:build gofuzz
     2  // +build gofuzz
     3  
     4  package httprule
     5  
     6  func Fuzz(data []byte) int {
     7  	if _, err := Parse(string(data)); err != nil {
     8  		return 0
     9  	}
    10  	return 0
    11  }
    12  

View as plain text