From 47fe90ee23d8ab04645ef3c7a17459ed40c5b765 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 24 Apr 2022 16:31:49 +0200 Subject: Allow to attach categories to events --- src/cli/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cli') diff --git a/src/cli/mod.rs b/src/cli/mod.rs index 81c5895..6ce50af 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -6,8 +6,8 @@ use crate::{db, model::event}; pub fn today(conn: &Connection) -> Result { let today = Local::today().naive_local(); - let mut events = db::list_non_recurring_between(conn, today, today)?; - let recurring_events = db::list_recurring(conn)?; + let mut events = db::events::list_non_recurring_between(conn, today, today)?; + let recurring_events = db::events::list_recurring(conn)?; let repetitions = event::repetitions_between(&recurring_events, today, today); for repetition in repetitions.values().flatten() { events.push(repetition.clone()); -- cgit v1.2.3