summaryrefslogtreecommitdiffstats
path: root/src/cli/app_launch_args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/app_launch_args.rs')
-rw-r--r--src/cli/app_launch_args.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/cli/app_launch_args.rs b/src/cli/app_launch_args.rs
deleted file mode 100644
index 03b25ae..0000000
--- a/src/cli/app_launch_args.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-use {
- crate::{
- tree::TreeOptions,
- },
- std::{
- path::PathBuf,
- },
-};
-
-
-/// the parsed program launch arguments which are kept for the
-/// life of the program
-pub struct AppLaunchArgs {
- pub root: PathBuf, // what should be the initial root
- pub file_export_path: Option<String>, // where to write the produced path (if required with --out) - deprecated
- pub cmd_export_path: Option<String>, // where to write the produced command (if required with --outcmd)
- pub tree_options: TreeOptions, // initial tree options
- pub commands: Option<String>, // commands passed as cli argument, still unparsed
- pub height: Option<u16>, // an optional height to replace the screen's one
- pub color: Option<bool>, // whether to display colors and styles
- pub listen: Option<String>, // if some, broot will start in serve mode on this socket
-}