Moved http service out of Registry into separate struct

This commit is contained in:
2025-04-16 02:15:53 +02:00
parent 693df6817a
commit 4fe64981d0
6 changed files with 174 additions and 151 deletions

View File

@@ -12,9 +12,11 @@ mod stats;
mod tui;
mod tunnel;
mod units;
mod web;
mod wrapper;
pub use ldap::Ldap;
pub use server::Server;
pub use tunnel::Registry;
pub use tunnel::Tunnel;
pub use web::Service;