Skip to main content

kanade_shared/wire/
mod.rs

1mod agent_config;
2mod agent_groups;
3mod command;
4mod heartbeat;
5mod inventory;
6mod logs;
7mod result;
8
9pub use agent_config::{ConfigScope, EffectiveConfig, ResolutionWarning, resolve};
10pub use agent_groups::AgentGroups;
11pub use command::{Command, Shell};
12pub use heartbeat::Heartbeat;
13pub use inventory::{DiskInfo, HwInventory};
14pub use logs::LogsRequest;
15pub use result::ExecResult;