diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2,7 +2,7 @@ #![feature(iterator_try_collect)] use game::Game; use redb::Database; -use std::collections::{HashMap, VecDeque}; +use std::collections::HashMap; use tokio::sync::{broadcast, RwLock}; pub mod bot; @@ -15,7 +15,6 @@ pub struct State { pub tick: broadcast::Sender<Option<Option<u32>>>, pub game: RwLock<Game>, pub players: RwLock<HashMap<u32, String>>, - pub win_history: RwLock<VecDeque<String>>, pub chat: broadcast::Sender<(String, String)>, pub db: Database, } |