Create backend module for more separation

This commit is contained in:
Joscha 2022-03-05 17:07:04 +01:00
parent c36f35747f
commit 80a6582ce5
8 changed files with 63 additions and 30 deletions

6
cove-tui/src/backend.rs Normal file
View file

@ -0,0 +1,6 @@
pub mod cove;
#[derive(Debug)]
pub enum Event {
Cove(String, cove::conn::Event),
}