about summary refs log tree commit diff
path: root/src/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.go')
-rw-r--r--src/structs.go11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/structs.go b/src/structs.go
index d2f76c2..980b47b 100644
--- a/src/structs.go
+++ b/src/structs.go
@@ -2,12 +2,12 @@ package main
 
 // Hide stores what requests to hide
 type Hide struct {
-	HideCode, HideLine, HideWord, HideChar string
+	HideCode, HideLine, HideWord, HideChar []int
 }
 
 // Show stores what requests to show
 type Show struct {
-	ShowCode, ShowLine, ShowWord, ShowChar string
+	ShowCode, ShowLine, ShowWord, ShowChar []int
 }
 
 // Config stores the overall config
@@ -36,8 +36,11 @@ type Config struct {
 
 // Response defines the http response
 type Response struct {
-	StatusCode int
-	FuzzWord   string
+	StatusCode    int
+	ResponseLines int
+	ResponseWords int
+	ResponseChars int
+	FuzzWord      string
 }
 
 // Found contains a list of all found endpoints an an Amount value indicating