mirror of
https://github.com/projectdiscovery/nuclei
synced 2026-06-08 16:50:47 +00:00
44c63a84d8
- L1: sdk_private.go references SetupPDCPUpload (was lowercase). - L2: config_test.go test comment describes how tmpEngine is constructed rather than incorrectly claiming "inherits from parent". - Trim godocs and inline comments across the PR — drop restated WHAT, keep WHY and limitations.
10 lines
310 B
Go
10 lines
310 B
Go
package nuclei
|
|
|
|
import "github.com/projectdiscovery/nuclei/v3/pkg/reporting"
|
|
|
|
// reportingOptionsForTest exposes e.reportingOpts to same-package tests.
|
|
// In a _test.go file so it stays off the public SDK surface.
|
|
func (e *NucleiEngine) reportingOptionsForTest() *reporting.Options {
|
|
return e.reportingOpts
|
|
}
|