pub trait AttributionDataProvider: Send + Sync {
// Required method
fn get_attribution_data(
&self,
) -> BoxFuture<'_, Result<AttributionData, Error>>;
}
pub trait AttributionDataProvider: Send + Sync {
// Required method
fn get_attribution_data(
&self,
) -> BoxFuture<'_, Result<AttributionData, Error>>;
}