Skip to main content

kanade_shared/wire/
mod.rs

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