Fixing print output

pull/1/head
daffainfo 2021-11-23 19:36:56 +07:00
parent 03b479ec62
commit 7aae021eba
2 changed files with 2 additions and 2 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module ApiGuesser module github.com/daffainfo/ApiGuesser
go 1.16 go 1.16

View File

@ -68,7 +68,7 @@ func Regex_api(contents string) {
re := regexp.MustCompile(data[i].Regex) re := regexp.MustCompile(data[i].Regex)
if re.MatchString(contents) { if re.MatchString(contents) {
res1 := re.FindAllString(contents, 1) res1 := re.FindAllString(contents, 1)
fmt.Println("[+] "+data[i].Name, " ", res1) fmt.Println(data[i].Name, res1)
} }
} }
} }