Move chat to ui module

This commit is contained in:
Joscha 2022-07-05 09:50:44 +02:00
parent 603876738f
commit 446e3e885a
11 changed files with 7 additions and 12 deletions

View file

@ -1,3 +1,4 @@
mod chat;
mod room;
mod rooms;
mod util;
@ -14,10 +15,10 @@ use tokio::task;
use toss::frame::{Frame, Pos, Size};
use toss::terminal::Terminal;
use crate::chat::Chat;
use crate::logger::{LogMsg, Logger};
use crate::vault::Vault;
use self::chat::Chat;
use self::rooms::Rooms;
#[derive(Debug)]