Small change to main.go print format.

This commit is contained in:
moony 2023-06-28 22:53:15 -04:00
parent 638815cc0e
commit bfd1f2300f

View File

@ -50,12 +50,12 @@ func main() {
if err != nil || res.StatusCode == 401 {
invalid++
ct.ChangeColor(ct.Red, false, ct.None, false)
fmt.Printf("[%d] [%s] [%d] [BAD]: %s\n", total, date, valid, k)
fmt.Printf("[%d] [%s] [%d] [INVALID]: %s\n", total, date, valid, k)
return
}
valid++
ct.ChangeColor(ct.Green, false, ct.None, false)
fmt.Printf("[%d] [%s] [%d] [GOOD]: %s\n", total, date, valid, k)
fmt.Printf("[%d] [%s] [%d] [VALID]: %s\n", total, date, valid, k)
}(key)
}
wg.Wait()