From 053be66771f32cfd864d0feead097747d1035762 Mon Sep 17 00:00:00 2001 From: tec <tec@ucc.gu.uwa.edu.au> Date: Fri, 27 Mar 2020 16:44:28 +0800 Subject: [PATCH] Ooops2, forgot to add !clear command --- state.db => blank_state.db | 0 src/main.rs | 1 + 2 files changed, 1 insertion(+) rename state.db => blank_state.db (100%) diff --git a/state.db b/blank_state.db similarity index 100% rename from state.db rename to blank_state.db diff --git a/src/main.rs b/src/main.rs index 295fcb6..439e38e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,6 +60,7 @@ impl EventHandler for Handler { "verify" => user_management::Commands::verify(ctx, msg.clone(), content), "profile" => user_management::Commands::profile(ctx, msg.clone(), content), "set" => user_management::Commands::set_info(ctx, msg.clone(), content), + "clear" => user_management::Commands::clear_info(ctx, msg.clone(), content), "move" => voting::Commands::move_something(ctx, msg.clone(), content), "motion" => voting::Commands::motion(ctx, msg.clone(), content), "poll" => voting::Commands::poll(ctx, msg.clone(), content), -- GitLab