Files
shubhamrasal 44c63a84d8 docs(sdk): trim PR comments, fix two review nits
- 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.
2026-05-12 14:41:25 +05:30

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
}