mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
34 lines
477 B
Rust
34 lines
477 B
Rust
//! Database agnostic implementations.
|
|
|
|
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;
|
|
}
|
|
|
|
pub mod safety {
|
|
pub mod report;
|
|
}
|