agentctl/debug/sources/
image_processing.rs1use super::super::bundle::collect_command_artifact;
2use super::super::schema::BundleArtifact;
3use std::path::Path;
4
5pub const ARTIFACT_ID: &str = "image-processing-help";
6pub const ARTIFACT_RELATIVE_PATH: &str = "artifacts/40-image-processing-help.json";
7
8pub fn collect(output_dir: &Path) -> BundleArtifact {
9 collect_command_artifact(
10 output_dir,
11 ARTIFACT_ID,
12 ARTIFACT_RELATIVE_PATH,
13 "image-processing",
14 &["info", "--help"],
15 )
16}