1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![deny(unsafe_code)]
#![deny(rust_2018_idioms)]

mod child;
mod swaynag;
#[cfg(test)]
mod tests;

pub(crate) type CowString = std::borrow::Cow<'static, str>;
pub use crate::swaynag::Swaynag;
pub use child::Child;