Added coloring helper lib

master
ice3man 2018-04-04 17:19:57 +05:30
parent d46b4804d8
commit 0f65797daf
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
//
// color.go : Contains color constants for printing
// Written By : @ice3man (Nizamul Rana)
//
// Distributed Under MIT License
// Copyrights (C) 2018 Ice3man
//
package helper
// use like this
// fmt.Printf("[%sCRTSH%s] %s", r, rs, subdomain)
var (
Red = "\033[31;1;4m" // red color
Cyan = "\033[36;1;4m" // cyan color
Reset = "\033[0m" // reset for default color
)