Skip to content

Commit

Permalink
vscan
Browse files Browse the repository at this point in the history
  • Loading branch information
veo committed Jun 16, 2022
1 parent ecbb78c commit da4454b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ package main

import (
"github.com/projectdiscovery/gologger"
naaburunner "github.com/veo/vscan/pkg/naabu/v2/pkg/runner"
naabuRunner "github.com/veo/vscan/pkg/naabu/v2/pkg/runner"
"runtime"
)

func main() {
options := naaburunner.ParseOptions()
options := naabuRunner.ParseOptions()
if runtime.GOOS == "windows" {
options.NoColor = true
}
naabuRunner, err := naaburunner.NewRunner(options)
naabuRunner, err := naabuRunner.NewRunner(options)
if err != nil {
gologger.Fatal().Msgf("Could not create runner: %s\n", err)
}
Expand Down

0 comments on commit da4454b

Please sign in to comment.