mirror of
https://github.com/sharkdp/bat
synced 2026-07-29 18:01:43 +00:00
11 lines
182 B
Rust
11 lines
182 B
Rust
#[cfg(feature = "application")]
|
|
mod application;
|
|
mod util;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
#[cfg(feature = "application")]
|
|
application::gen_man_and_comp()?;
|
|
|
|
Ok(())
|
|
}
|