Restructure and make commands uniform

This commit is contained in:
Yehuda Katz
2019-05-22 00:12:03 -07:00
parent 362ca18f88
commit 261d7a793f
22 changed files with 776 additions and 416 deletions

View File

@ -3,7 +3,7 @@ use std::collections::BTreeMap;
#[allow(unused)]
crate struct Completer {
commands: BTreeMap<String, Box<dyn crate::CommandBlueprint>>,
commands: BTreeMap<String, Box<dyn crate::Command>>,
}
impl completion::Completer for Completer {