server: refactor ldap_handler

Split it into several files, move them into the domain folder, introduce
`LdapError` for better control flow.
This commit is contained in:
Valentin Tolmer
2022-10-17 14:03:31 +02:00
committed by nitnelave
parent 0be440efc8
commit 35aa656677
7 changed files with 820 additions and 787 deletions

View File

@@ -0,0 +1,4 @@
pub mod error;
pub mod group;
pub mod user;
pub mod utils;