use std::collections::HashMap;
use std::fmt;
use async_trait::async_trait;
use serde_json::Value;
pub type Headers = HashMap<String, String>;
pub type Query<'a> = HashMap<&'a str, &'a str>;
pub type Form<'a> = HashMap<&'a str, &'a str>;
#[async_trait]
pub trait BaseHttpClient: Send + Default + Clone + fmt::Debug {
type Error;
async fn get(
&self,
url: &str,
headers: Option<&Headers>,
payload: &Query,
) -> Result<String, Self::Error>;
async fn post(
&self,
url: &str,
headers: Option<&Headers>,
query: Option<&Query>,
payload: &Value,
) -> Result<String, Self::Error>;
async fn post_form(
&self,
url: &str,
headers: Option<&Headers>,
payload: &Form<'_>,
) -> Result<String, Self::Error>;
async fn put(
&self,
url: &str,
headers: Option<&Headers>,
query: Option<&Query>,
payload: &Value,
) -> Result<String, Self::Error>;
async fn delete(
&self,
url: &str,
headers: Option<&Headers>,
payload: &Value,
) -> Result<String, Self::Error>;
}