diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-01-18 10:58:36 -0600 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-01-18 10:58:36 -0600 |
commit | 00d0bfced902e97eeae5257c14134d4bc7efc710 (patch) | |
tree | ee026f328614e03aec3ed373d9f2e6c8e255f834 /src/handlers/mod.rs | |
parent | 7017762a4a38266aa88976be141f7bd663647edc (diff) |
Commands to interact with discocaml, associated IPC.
Diffstat (limited to 'src/handlers/mod.rs')
-rw-r--r-- | src/handlers/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/handlers/mod.rs b/src/handlers/mod.rs index 46bd57b..4c09fec 100644 --- a/src/handlers/mod.rs +++ b/src/handlers/mod.rs @@ -18,10 +18,12 @@ use serenity::{ }; use std::collections::HashMap; +mod commands; mod presence_setter; mod x500_mapper; pub use self::{ + commands::Commands, presence_setter::PresenceSetter, x500_mapper::{X500Mapper, X500MapperConfig}, }; |