proc_cli/core/mod.rs
1//! Core abstractions for process and port management
2//!
3//! This module provides cross-platform abstractions for working with
4//! system processes and network ports.
5
6pub mod port;
7pub mod process;
8pub mod target;
9
10pub use port::{parse_port, PortInfo, Protocol};
11pub use process::{Process, ProcessStatus};
12pub use target::{
13 find_ports_for_pid, parse_target, parse_targets, resolve_target, resolve_target_single,
14 resolve_targets, TargetType,
15};