mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
refactor: upgrade tauri 2.0
This commit is contained in:
13
crates/auth/src/lib.rs
Normal file
13
crates/auth/src/lib.rs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
Reference in New Issue
Block a user