mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-16 09:50:06 +01: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(())
|
||
|
}
|