pcap_processor/commands/
extract.rs1use crate::cli::ExtractArgs;
2use crate::error::{PcapError, Result};
3
4pub fn run_extract(_args: ExtractArgs) -> Result<()> {
5 Err(PcapError::OutputFormat(
6 "extract command is not yet implemented".to_string(),
7 ))
8}