refactor: upgrade tauri 2.0

This commit is contained in:
Kevin Yue
2024-12-26 21:35:55 +08:00
parent 0f67be465b
commit 8f8ad466f4
73 changed files with 7232 additions and 5026 deletions

13
crates/auth/src/lib.rs Normal file
View 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;