1//! Admin REST API and UI for proxy management. 2 3pub mod api; 4mod ui; 5 6pub use api::{admin_router, ApiResponse}; 7pub use ui::admin_ui_router;