1use reqwest::{Client}; 2 3pub mod auth; 4mod client; 5mod db; 6 7#[derive(Clone, Debug)] 8pub struct Supabase { 9 client: Client, 10 url: String, 11 api_key: String, 12 jwt: String, 13 bearer_token: Option<String>, 14}