pub trait SqliteServiceTrait {
// Required method
fn merge_cookies<'life0, 'async_trait>(
&'life0 self,
old_archive: Option<String>,
new_archive: String,
) -> Pin<Box<dyn Future<Output = AppResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}