dioxus-oauth 0.6.4

Library for using OAuth in dioxus
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod component;
#[cfg(feature = "web")]
pub mod firebase;
pub mod oauth_client;

pub mod prelude {
    pub use crate::component::*;
    #[cfg(feature = "web")]
    pub use crate::firebase::*;
    pub use crate::oauth_client::*;
}