Start implementing "list"

This commit is contained in:
Matthias Beyer 2016-03-11 09:45:20 +01:00
parent 44287d2162
commit 8c380aa3ae

View file

@ -1,5 +1,10 @@
use libimagrt::runtime::Runtime;
pub fn list(rt: &Runtime) {
unimplemented!();
rt.cli()
.subcommand_matches("list")
.map(|scmd| {
debug!("Found 'list' subcommand...");
});
}