mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 23:15:27 +00:00
10 lines
235 B
Go
10 lines
235 B
Go
package collaborator
|
|
|
|
import (
|
|
"github.com/projectdiscovery/collaborator"
|
|
)
|
|
|
|
func removeMatch(responses []collaborator.BurpResponse, index int) []collaborator.BurpResponse {
|
|
return append(responses[:index], responses[index+1:]...)
|
|
}
|