mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
14 lines
353 B
Rust
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;
|