ffuf/pkg/output/const.go

13 lines
250 B
Go
Raw Normal View History

2018-11-09 12:26:55 +00:00
// +build !windows
package output
const (
TERMINAL_CLEAR_LINE = "\r\x1b[2K"
2018-11-09 13:21:23 +00:00
ANSI_CLEAR = "\x1b[0m"
ANSI_RED = "\x1b[31m"
ANSI_GREEN = "\x1b[32m"
ANSI_BLUE = "\x1b[34m"
ANSI_YELLOW = "\x1b[33m"
2018-11-09 12:26:55 +00:00
)