/// Run command
/// Sent by the cli
/// Tells the agent to start the checks
pub const CMD_RUN: u8 = 0x01;
/// Stop command
/// Sent by the cli
/// Tells the agent to stop executing
pub const CMD_STOP: u8 = 0x02;
/// Status command
/// Sent by the cli
/// Requests the agent's current status
pub const CMD_STATUS: u8 = 0x03;
/// Result response
/// Sent by the agent
/// Tells the cli that the following message contains a check result
pub const RESP_RESULT: u8 = 0x10;
/// Done response
/// Sent by the agent
/// Tells the cli that the agent has finished its execution
pub const RESP_DONE: u8 = 0x11;
/// Error response
/// Sent by the agent
/// Tells the cli that an error has occurred during agent execution
pub const RESP_ERROR: u8 = 0x12;
/// Log response
/// Sent by the agent
/// Tells the cli that the following message contains an agent log entry
pub const RESP_LOG: u8 = 0x13;
/// Constant that contains this crate's package version
pub const SHARED_VERSION: &str = env!;