style: cargo fmt fixup for 1.9 feature edits

This commit is contained in:
2026-04-07 20:14:50 +01:00
parent 41df3c2dfd
commit 7214d0ab5d
4 changed files with 6 additions and 14 deletions

View File

@@ -15,8 +15,7 @@ pub trait WorkflowRepository: Send + Sync {
) -> crate::Result<()>;
async fn get_runnable_instances(&self, as_at: DateTime<Utc>) -> crate::Result<Vec<String>>;
async fn get_workflow_instance(&self, id: &str) -> crate::Result<WorkflowInstance>;
async fn get_workflow_instance_by_name(&self, name: &str)
-> crate::Result<WorkflowInstance>;
async fn get_workflow_instance_by_name(&self, name: &str) -> crate::Result<WorkflowInstance>;
async fn get_workflow_instances(&self, ids: &[String]) -> crate::Result<Vec<WorkflowInstance>>;
/// Atomically allocate the next sequence number for a given workflow