Remove dummy store

This commit is contained in:
Joscha 2022-06-23 22:25:23 +02:00
parent e0db158ece
commit 28263e6a5c
5 changed files with 8 additions and 175 deletions

View file

@ -31,7 +31,7 @@ async fn main() -> anyhow::Result<()> {
let mut terminal = Terminal::new()?;
// terminal.set_measuring(true);
Ui::run(&mut terminal, logger, logger_rx).await?;
Ui::run(&mut terminal, vault.clone(), logger, logger_rx).await?;
drop(terminal); // So the vault can print again
vault.close().await;