1
2
3
4
5
6
//! Regex compatible interface
mod builder;
mod re;

pub use builder::{RegexBuilder, RegexSetBuilder};
pub use re::Regex;