Initial Commit

This commit is contained in:
2025-11-26 17:51:15 +00:00
commit 6786a5e9f0
16 changed files with 1832 additions and 0 deletions

10
src/lib.rs Normal file
View File

@@ -0,0 +1,10 @@
mod client;
mod dialogue;
pub mod error;
mod types;
pub mod prelude {
pub use crate::client::*;
pub use crate::dialogue::*;
pub use crate::types::*;
}