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 /// A constructor for the FireAuth struct 13 pub fn new(api_key: String) -> Self { 14 Self { api_key } 15 } 16}