Fix warnings

This commit is contained in:
Louis Knight-Webb
2025-06-20 22:06:01 +01:00
parent b42574e981
commit ea54f15e0e
10 changed files with 5 additions and 212 deletions

View File

@@ -10,10 +10,6 @@ pub struct ClaudeExecutor;
#[async_trait]
impl Executor for ClaudeExecutor {
fn executor_type(&self) -> &'static str {
"claude"
}
async fn spawn(
&self,
pool: &sqlx::SqlitePool,
@@ -51,8 +47,4 @@ impl Executor for ClaudeExecutor {
Ok(child)
}
fn description(&self) -> &'static str {
"Executes tasks using Claude CLI for AI-powered code assistance"
}
}