1 2 3 4 5 6 7 8 9
use crate::domain::{error::ChronError, repository::TaskRepository}; pub async fn claim_task( repo: &impl TaskRepository, id: &str, agent_id: &str, ) -> Result<(), ChronError> { repo.claim_task(id, agent_id).await }