//! This file provides a structure that implements the trait //! [`NFA`][super::Nfa] and another that umplements the trait //! [`Regex`][super::Regex]. pub mod nfa; pub mod regex; #[cfg(test)] mod default_nfa_test {}