Files
ppanel-web/src/handler/admin/auth_method/mod.rs
T
Ember Moth 2744c70c5c Initial
2026-07-05 20:27:58 +08:00

15 lines
625 B
Rust

mod get_auth_method_config_handler;
pub use get_auth_method_config_handler::get_auth_method_config;
mod update_auth_method_config_handler;
pub use update_auth_method_config_handler::update_auth_method_config;
mod get_auth_method_list_handler;
pub use get_auth_method_list_handler::get_auth_method_list;
mod get_email_platform_handler;
pub use get_email_platform_handler::get_email_platform;
mod get_sms_platform_handler;
pub use get_sms_platform_handler::get_sms_platform;
mod test_email_send_handler;
pub use test_email_send_handler::test_email_send;
mod test_sms_send_handler;
pub use test_sms_send_handler::test_sms_send;