From d29441bf024a2c7742385a5f875ddf05584152b8 Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 27 Apr 2023 20:07:25 +0200 Subject: [PATCH] Move todo to proper location --- cove-config/src/lib.rs | 1 - cove/src/main.rs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/cove-config/src/lib.rs b/cove-config/src/lib.rs index ef9c731..13d6ead 100644 --- a/cove-config/src/lib.rs +++ b/cove-config/src/lib.rs @@ -80,7 +80,6 @@ pub struct Config { #[document(default = "`alphabet`")] pub rooms_sort_order: RoomsSortOrder, - // TODO Invoke external notification command? pub euph: Euph, #[serde(default)] diff --git a/cove/src/main.rs b/cove/src/main.rs index 0c99ee4..2bd8271 100644 --- a/cove/src/main.rs +++ b/cove/src/main.rs @@ -13,6 +13,7 @@ // TODO Remove unnecessary Debug impls and compare compile times // TODO Time zones other than UTC // TODO Fix password room auth +// TODO Invoke external notification command? mod euph; mod export;