about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-11-02 16:52:08 +0100
committerEmile <hanemile@protonmail.com>2019-11-02 16:52:08 +0100
commitd9b14426c9cfca8c9cf813c8abb44a5c22de47e4 (patch)
tree3ad64362192c09c42d281754ea9d7b176b620801
parent2ef681c9b7edb76d236713d83fab9773f672177c (diff)
comment
-rw-r--r--src/main.go2
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("[+]"))