aboutsummaryrefslogtreecommitdiff
path: root/src/handlers/mod.rs
diff options
context:
space:
mode:
authorNathan Ringo <nathan@remexre.com>2024-01-16 02:56:15 -0600
committerNathan Ringo <nathan@remexre.com>2024-01-16 02:56:15 -0600
commitbc91cdbc75b299a810da0fed2c09acf040620fbe (patch)
tree82aa637c13c1ccf5deb1e408775d31b1829972db /src/handlers/mod.rs
parent485753f30af12dcfc1bb528c6d6279cb15f1089b (diff)
Add the student role to students.
Diffstat (limited to 'src/handlers/mod.rs')
-rw-r--r--src/handlers/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/handlers/mod.rs b/src/handlers/mod.rs
index f2b8a4f..46bd57b 100644
--- a/src/handlers/mod.rs
+++ b/src/handlers/mod.rs
@@ -21,7 +21,10 @@ use std::collections::HashMap;
mod presence_setter;
mod x500_mapper;
-pub use self::{presence_setter::PresenceSetter, x500_mapper::X500Mapper};
+pub use self::{
+ presence_setter::PresenceSetter,
+ x500_mapper::{X500Mapper, X500MapperConfig},
+};
/// An EventHandler that proxies events to each of its contained handlers concurrently (but not in
/// parallel).