clippy pedantic clean + wired into flake checks

This commit is contained in:
müde 2026-05-14 22:57:47 +02:00
parent f12837fe32
commit fef2dee92a
12 changed files with 55 additions and 25 deletions

View file

@ -67,7 +67,7 @@ async fn main() -> Result<()> {
match cli.cmd {
Cmd::Serve { agent_flake, db } => {
let coord = Arc::new(Coordinator::open(&db, agent_flake)?);
manager_server::start(coord.clone()).await?;
manager_server::start(coord.clone())?;
server::serve(&cli.socket, coord).await
}
Cmd::Spawn { name } => {