1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../../README.md")]
#![warn(missing_docs)]

/// This module contains the [pattern::Pattern] struct and its implementation.
pub mod pattern;

/// This module contains the [network::Network] struct and its implementation.
pub mod network;

/// This module contains the [errors::Error] enum and its implementation.
pub mod errors;

pub(crate) mod traits;