Files
GlobalProtect-openconnect/crates/auth/src/lib.rs
2024-12-26 21:50:39 +08:00

14 lines
353 B
Rust

mod authenticator;
pub use authenticator::auth_prelogin;
pub use authenticator::Authenticator;
#[cfg(feature = "browser-auth")]
mod browser_auth;
#[cfg(feature = "browser-auth")]
pub use browser_auth::BrowserAuthenticator;
#[cfg(feature = "webview-auth")]
mod webview_auth;
#[cfg(feature = "webview-auth")]
pub use webview_auth::WebviewAuthenticator;