2025-03-23 21:19:16 -04:00
|
|
|
pub mod cache;
|
2025-03-22 22:17:47 -04:00
|
|
|
pub mod config;
|
|
|
|
pub mod database;
|
|
|
|
pub mod model;
|
|
|
|
|
|
|
|
pub use database::DataManager;
|
2025-04-24 19:06:30 -04:00
|
|
|
|
|
|
|
/// Tells us if pubsub capabilities are provided (via Redis).
|
|
|
|
///
|
|
|
|
/// If we have access to pubsub, community channels/messages will be available.
|
|
|
|
///
|
|
|
|
/// This is mostly used a flag for the UI.
|
|
|
|
pub const PUBSUB_ENABLED: bool = cfg!(feature = "redis");
|