This commit is contained in:
2025-12-13 02:15:28 +01:00
commit dbec2e9a74
58 changed files with 6177 additions and 0 deletions

9
src/serializers/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
mod server;
mod category;
mod channel;
mod message;
pub use server::*;
pub use category::*;
pub use channel::*;
pub use message::*;