rpsl/lib.rs
1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3
4pub use attribute::{Attribute, Name, Value};
5pub use error::{AttributeError, ParseError};
6pub use object::Object;
7pub use parser::{parse_object, parse_whois_response};
8
9mod attribute;
10#[allow(clippy::module_name_repetitions)]
11mod error;
12mod object;
13mod parser;