mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 21:47:02 +00:00
35 lines
510 B
Rust
35 lines
510 B
Rust
use crate::AbstractDatabase;
|
|
|
|
pub mod admin {
|
|
pub mod migrations;
|
|
}
|
|
|
|
pub mod media {
|
|
pub mod attachment;
|
|
pub mod emoji;
|
|
}
|
|
|
|
pub mod channels {
|
|
pub mod channel;
|
|
pub mod channel_invite;
|
|
pub mod channel_unread;
|
|
pub mod message;
|
|
}
|
|
|
|
pub mod servers {
|
|
pub mod server;
|
|
pub mod server_ban;
|
|
pub mod server_member;
|
|
}
|
|
|
|
pub mod users {
|
|
pub mod bot;
|
|
pub mod user;
|
|
pub mod user_settings;
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct DummyDb;
|
|
|
|
impl AbstractDatabase for DummyDb {}
|