quocktail/
lib.rs

1//! Quocktail is a CLI for searching yaml frontmatter in markdown files.
2//!
3//! Yada yada yada.
4
5mod color;
6mod command;
7mod output;
8mod parse;
9
10// ... other modules
11
12// This is the only export from the crate. It is marked hidden and
13// is not part of the public API.
14#[doc(hidden)]
15pub use command::Quocktail;