dnsi 0.2.0

A tool for investigating the DNS.
Documentation
1
2
3
4
5
6
//! Common ANSI codes

pub static BOLD: &str = "\x1B[1m";
pub static UNDERLINE: &str = "\x1B[4m";
pub static ITALIC: &str = "\x1B[3m";
pub static RESET: &str = "\x1B[m";