1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Quocktail is a CLI for searching yaml frontmatter in markdown files.
//!
//! Yada yada yada.

mod color;
mod command;
mod output;

// ... other modules

// This is the only export from the crate. It is marked hidden and
// is not part of the public API.
#[doc(hidden)]
pub use command::Quocktail;