Skip to content

Commit edf621b

Browse files
committed
Fixed bug
1 parent 9586ed5 commit edf621b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/func.go

+1
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ func NewScan(target Target) (Result, error) {
192192
result := Result{
193193
Logs: modelResult.Logs,
194194
PoCs: modelResult.PoCs,
195+
Params: modelResult.Params,
195196
Duration: modelResult.Duration,
196197
StartTime: modelResult.StartTime,
197198
EndTime: modelResult.EndTime,

lib/interface_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ func TestResult_IsFound(t *testing.T) {
1111
type fields struct {
1212
Logs []string
1313
PoCs []model.PoC
14+
Params []model.ParamResult
1415
Duration time.Duration
1516
StartTime time.Time
1617
EndTime time.Time

0 commit comments

Comments
 (0)