add 'estimatedeletion' to repl tool

This commit is contained in:
B. Petersen
2020-03-09 00:28:37 +01:00
committed by Alexander Krotov
parent d1a4c82937
commit aea8a32ba5
2 changed files with 22 additions and 2 deletions

View File

@@ -308,8 +308,17 @@ const CONTACT_COMMANDS: [&str; 6] = [
"delcontact",
"cleanupcontacts",
];
const MISC_COMMANDS: [&str; 9] = [
"getqr", "getbadqr", "checkqr", "event", "fileinfo", "clear", "exit", "quit", "help",
const MISC_COMMANDS: [&str; 10] = [
"getqr",
"getbadqr",
"checkqr",
"event",
"fileinfo",
"clear",
"exit",
"quit",
"help",
"estimatedeletion",
];
impl Hinter for DcHelper {