constant/constants.go
package constants
// IPInfoAPIURL is and API URL
const (
IPInfoAPIURL = "https://ipinfo.io/"
Version = "6.20"
Newline = "\n"
GooglePublicDNS = "8.8.8.8:53"
CloudflarePublicDNS = "1.1.1.1:53"
)
const (
RedColorEncoding = "\033[38;5;1m"
YellowColorEncoding = "\033[38;5;3m"
BlueColorEncoding = "\033[38;5;4m"
GreyColorEncoding = "\033[38;5;242m"
)