From bd1e965f936c9fe652bd940c1f12e3327f06a222 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 10 Nov 2018 00:50:24 -0500 Subject: add sql subcommand for raw queries this was more painful than i think it should have been --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 4638adf..b43f310 100644 --- a/src/main.rs +++ b/src/main.rs @@ -22,6 +22,7 @@ fn run() -> failure::Fallible<()> { let command = cli::get_options()?; match command { cli::Command::Sync { username } => cmd::sync::run(&username), + cli::Command::SQL { query, tsv } => cmd::sql::run(&query, tsv), } } -- cgit v1.2.3-54-g00ecf