Fix P6 agent: add serde_yaml dep, make modules public for integration tests

This commit is contained in:
2026-03-01 03:13:26 +00:00
parent 829e408e1e
commit b41cdd1db9
2 changed files with 5 additions and 4 deletions

View File

@@ -22,6 +22,7 @@ chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4"] } uuid = { version = "1", features = ["v4"] }
thiserror = "1" thiserror = "1"
anyhow = "1" anyhow = "1"
serde_yaml = "0.9"
[dev-dependencies] [dev-dependencies]
tokio-test = "0.4" tokio-test = "0.4"

View File

@@ -1,10 +1,10 @@
use clap::{Parser, Subcommand}; use clap::{Parser, Subcommand};
use tracing::info; use tracing::info;
mod parser; pub mod parser;
mod classifier; pub mod classifier;
mod executor; pub mod executor;
mod audit; pub mod audit;
#[derive(Parser)] #[derive(Parser)]
#[command(name = "dd0c-run", version, about = "Runbook automation agent")] #[command(name = "dd0c-run", version, about = "Runbook automation agent")]