Skip to main content

squigit_auth/auth/
mod.rs

1// Copyright 2026 a7mddra
2// SPDX-License-Identifier: Apache-2.0
3
4mod callback_server;
5mod credentials;
6mod google;
7
8pub use callback_server::{
9    google_auth_status_page_url_for, AuthFlowSettings, BrowserOpener, LoopbackAuthPage,
10    LoopbackAuthServer,
11};
12pub use credentials::{validate_google_credentials, CredentialsSource};
13pub use google::{
14    begin_google_auth_flow, complete_google_auth_flow, hydrate_avatar, GoogleAuthAttempt,
15};