1use haste_fhir_operation_error::OperationOutcomeError; 2use haste_indexing_worker::run_worker; 3 4pub async fn worker() -> Result<(), OperationOutcomeError> { 5 run_worker().await 6}