whos_data/
lib.rs

1mod server_list;
2
3/** Domain suffix to WHOIS server mapping.
4 *
5 * Keys are domain name suffixes; values are `Some(server_name)` if there is a
6 * working server, `None` otherwise.
7 *
8 * Built from whois(1) by Marco d'Itri and modified; notably, tags and Web
9 * WHOIS URLs are discarded. see code of the private `build-data` crate for
10 * details.
11 */
12pub use server_list::SUFFIX_SERVER_LIST;