From a4becfec382db6affa6a748985e00adcb4a11ad8 Mon Sep 17 00:00:00 2001 From: John Smith Date: Sat, 4 May 2024 13:34:33 -0400 Subject: [PATCH] add punish clear command back in --- veilid-core/src/veilid_api/debug.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/veilid-core/src/veilid_api/debug.rs b/veilid-core/src/veilid_api/debug.rs index 312ffe56..73f7c804 100644 --- a/veilid-core/src/veilid_api/debug.rs +++ b/veilid-core/src/veilid_api/debug.rs @@ -1919,6 +1919,8 @@ impl VeilidAPI { if command == "list" { self.debug_punish_list(args).await + } else if command == "clear" { + self.debug_punish_clear(args).await } else { Ok(">>> Unknown command\n".to_owned()) }