Small restructuring

This commit is contained in:
Yehuda Katz
2019-05-22 21:30:43 -07:00
parent 261d7a793f
commit 31dd579d6f
17 changed files with 354 additions and 274 deletions

View File

@ -1,9 +1,10 @@
use crate::prelude::*;
use rustyline::{completion, Context};
use std::collections::BTreeMap;
#[allow(unused)]
crate struct Completer {
commands: BTreeMap<String, Box<dyn crate::Command>>,
commands: BTreeMap<String, Box<dyn Command>>,
}
impl completion::Completer for Completer {