#[derive(Debug, Clone)]
pub struct CacheConfig {
pub cache_users: bool,
pub cache_channels: bool,
pub cache_guilds: bool,
pub cache_relationships: bool,
}
impl Default for CacheConfig {
fn default() -> Self {
Self {
cache_users: true,
cache_channels: true,
cache_guilds: true,
cache_relationships: true,
}
}
}