aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/setups.rs
blob: e1835e7b7dea7882a7f54488328bfbb230576b6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/// Picker's `ProgramSetup` variant.
///
/// Internally does not use its own argument parsing,
/// but relies on `arg_picker`'s argument parsing capability.
#[cfg(feature = "picker")]
pub mod picker;

mod basic;
pub use basic::*;

mod confirm;
pub use confirm::*;

mod dirs;
pub use dirs::*;

mod exit_code;
pub use exit_code::*;

mod osc94;
pub use osc94::*;

#[cfg(feature = "repl")]
mod repl_basic;
#[cfg(feature = "repl")]
pub use repl_basic::*;

mod stdin_args;
pub use stdin_args::*;

#[cfg(feature = "structural_renderer")]
mod structural_renderer;
#[cfg(feature = "structural_renderer")]
pub use structural_renderer::*;