From 9db2e4d9845b87a367086569fa4118c5673f3a8a Mon Sep 17 00:00:00 2001 From: Michael Cuffaro Date: Tue, 5 Nov 2024 13:56:27 -0500 Subject: [PATCH] remove old comment --- src/cli.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 3cab235..a0fad0e 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -20,11 +20,6 @@ static ROW_HELP: &str = "A row number"; static SAVE_DIR_HELP: &str = "Save tables to DIR instead of to their configured paths"; static TABLE_HELP: &str = "A table name"; -// TODO: (1) Move all of the definitions above to cli.rs. (2) For each match arm write a function -// that is particular to it, and call that function from the match arm. (3) Move the -// `match &cli.command` (and also the build_valve()) code _itself_ to cli.rs and call just call it -// from here. This makes everything maximally reusable I think, but with default behaviour. - #[derive(Parser)] #[command(version, about = "Valve: A lightweight validation engine -- command line interface",