ripgen_lib 0.1.4

High-performance domain-name permutation generator.
Documentation
1
2
3
4
5
6
7
8
use thiserror::Error;

#[derive(Error, Debug)]
/// The RipGen error type.
pub enum RipGenError {
    #[error("Unable to parse provided domain.")]
    ErrorParsingDomain(String),
}