firebase_user/
lib.rs

1pub mod api;
2mod error;
3
4pub use error::Error;
5
6#[derive(Clone, Debug)]
7pub struct FireAuth {
8    pub api_key: String, // web api key
9}
10
11impl FireAuth {
12    pub fn new(api_key: String) -> Self {
13        Self { api_key }
14    }
15}