diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.go b/src/main.go index 2ef1f56..badeed8 100644 --- a/src/main.go +++ b/src/main.go @@ -25,6 +25,8 @@ func main() { log.Printf("%s Done defining channels", green("[+]")) // write into the wordlist channel and read out of the print channel + // these functions wait for input into the channels and process the given + // data go writeWordlistToChannel(wordlistChannel, wordlist) go printResponses(printChannel) log.Printf("%s Done starting hander routines", green("[+]")) |