clusterflux-public/crates/clusterflux-node/src/main.rs
2026-07-21 18:07:02 +02:00

12 lines
230 B
Rust

mod assignment_runner;
mod coordinator_session;
mod daemon;
mod debug_agent;
mod node_identity;
mod source_snapshot;
mod task_artifacts;
mod task_reports;
fn main() -> Result<(), Box<dyn std::error::Error>> {
daemon::run()
}