wasmshield_cli/commands.rs
1//! The module for the Wasmshield CLI commands
2
3/// Check Sbom information of a component built with cargo auditable
4#[cfg(feature = "sbom")]
5pub mod sbom;
6#[cfg(feature = "sbom")]
7pub use self::sbom::*;
8
9/// Check Signature of a component
10#[cfg(feature = "signature")]
11pub mod signature;
12#[cfg(feature = "signature")]
13pub use self::signature::*;