use super::*; use std::collections::HashMap; use generational_arena::{ Arena, Index as ArenaIndex, }; use std::sync::Arc; use tokio::sync::RwLock; pub mod session; pub mod user; pub mod post; pub mod body; mod freeze; pub use freeze::*; /// Entire post container pub struct Oneesan { posts: RwLock<(Arena>> // All posts , HashMap> // Post lookup by user ID )>, }