Added comments

This commit is contained in:
perp 2024-07-09 17:12:22 +01:00
parent 1adaaec068
commit 3c639d3013

View File

@ -33,7 +33,7 @@ var (
debug bool debug bool
) )
// var debug bool // Command
var rootCmd = &cobra.Command{ var rootCmd = &cobra.Command{
Use: "blink", Use: "blink",
Short: "Blink is a DNS bruteforcer made in Go (Author: perp)", Short: "Blink is a DNS bruteforcer made in Go (Author: perp)",
@ -178,6 +178,7 @@ func init() {
} }
func main() { func main() {
// Execute command
if err := rootCmd.Execute(); err != nil { if err := rootCmd.Execute(); err != nil {
log.Err(err).Msg("") log.Err(err).Msg("")
os.Exit(1) os.Exit(1)