forked from jmug/stoatchat
31 lines
1.2 KiB
Rust
31 lines
1.2 KiB
Rust
use std::{collections::HashMap, sync::Arc};
|
|
|
|
use futures::lock::Mutex;
|
|
|
|
use crate::{
|
|
Bot, Channel, ChannelCompositeKey, ChannelUnread, File, Invite, Member, MemberCompositeKey,
|
|
Server, User, UserSettings, Webhook,
|
|
};
|
|
|
|
database_derived!(
|
|
/// Reference implementation
|
|
#[derive(Default)]
|
|
pub struct ReferenceDb {
|
|
pub bots: Arc<Mutex<HashMap<String, Bot>>>,
|
|
pub channels: Arc<Mutex<HashMap<String, Channel>>>,
|
|
pub channel_invites: Arc<Mutex<HashMap<String, Invite>>>,
|
|
pub channel_unreads: Arc<Mutex<HashMap<ChannelCompositeKey, ChannelUnread>>>,
|
|
pub channel_webhooks: Arc<Mutex<HashMap<String, Webhook>>>,
|
|
pub user_settings: Arc<Mutex<HashMap<String, UserSettings>>>,
|
|
pub users: Arc<Mutex<HashMap<String, User>>>,
|
|
pub server_members: Arc<Mutex<HashMap<MemberCompositeKey, Member>>>,
|
|
pub servers: Arc<Mutex<HashMap<String, Server>>>,
|
|
pub files: Arc<Mutex<HashMap<String, File>>>,
|
|
pub server_bans: Arc<Mutex<HashMap<String, ()>>>,
|
|
pub safety_reports: Arc<Mutex<HashMap<String, ()>>>,
|
|
pub safety_snapshots: Arc<Mutex<HashMap<String, ()>>>,
|
|
pub emoji: Arc<Mutex<HashMap<String, ()>>>,
|
|
pub messages: Arc<Mutex<HashMap<String, ()>>>,
|
|
}
|
|
);
|