drk: print table to stdout

This commit is contained in:
lunar-mining
2021-10-08 09:14:17 +02:00
parent 39ab473514
commit b112817c56

View File

@@ -177,6 +177,8 @@ async fn start(config: &DrkConfig, options: ArgMatches<'_>) -> Result<()> {
let mut table = Table::new();
table.add_row(row!["TOKEN", "AMOUNT"]);
table.add_row(row![reply]);
//ptable!([reply]);
table.printstd();
return Ok(());
}
}