Restructure and prepare for cove room UI

This commit is contained in:
Joscha 2022-03-05 15:43:28 +01:00
parent 619e04c42a
commit e81900caac
4 changed files with 20 additions and 14 deletions

7
cove-tui/src/ui/cove.rs Normal file
View file

@ -0,0 +1,7 @@
mod users;
use crate::cove::room::CoveRoom;
pub struct CoveUi {
room: CoveRoom,
}