pub trait StatusServiceTrait {
// Required method
fn get_health_status<'life0, 'async_trait>(
&'life0 self,
s3_status: ServiceStatuses,
) -> Pin<Box<dyn Future<Output = AppResult<HealthResponse>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}