Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Legacy **cookie** authentication flow.
//!
//! Deprecated — prefer [`crate::PubkyGrantAuthFlow`] for new applications.
//! Cookie-backed sessions lack the self-refreshing, mirror-friendly properties
//! of grant-backed sessions.

pub(crate) mod approval;
pub(crate) mod builder;
pub(crate) mod credential;
pub(crate) mod flow;
mod legacy_api;
pub(crate) mod secret;
pub mod view;

pub use credential::CookieCredential;
#[allow(deprecated, reason = "Re-exporting deprecated public API")]
pub use flow::PubkyCookieAuthFlow;
pub use view::CookieSessionView;