From ca3833f5200cf685af18ac071bd41d221a6e768b Mon Sep 17 00:00:00 2001 From: Matthew Turner Date: Tue, 7 Jan 2025 10:55:30 -0500 Subject: [PATCH] Add args --- src/args.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/args.rs b/src/args.rs index b8d93a2..d734987 100644 --- a/src/args.rs +++ b/src/args.rs @@ -95,6 +95,13 @@ pub struct DftArgs { #[cfg(any(feature = "flightsql", feature = "experimental-flightsql-server"))] #[clap(long, help = "Set the host and port to be used for FlightSQL")] pub flightsql_host: Option, + + #[clap( + long, + short, + help = "Path to save output to. Type is inferred from file suffix" + )] + pub output: Option, } impl DftArgs {