From 00a865bc08753898c3cdc0d924985f427abb9f74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Thu, 29 Jul 2021 13:19:15 +0200 Subject: comments --- cli/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cli') diff --git a/cli/src/main.rs b/cli/src/main.rs index 5a77ff4..18d422a 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -6,6 +6,7 @@ use structopt::StructOpt; mod model; +//TODO relative ("yesterday", "-2d", etc) fn parse_date(s: &str) -> Result { NaiveDate::parse_from_str(s, "%Y-%m-%d").map_err(|e| e.to_string()) } @@ -59,8 +60,6 @@ struct Mn { command: Command, } -// mn insert expense --account Kortkonto --category a --category b - fn main() { let mut store = model::Store::open(PathBuf::from("store")).unwrap(); let args = Mn::from_args(); -- cgit v1.2.1