datadog_agent_commons/lib.rs
1//! Datadog Agent shared functionality.
2//!
3//! This crate is intended to be the single place for Datadog Agent-specific shared functionality, from configuration
4//! handling logic to common logic and more. IF it deals with emulating a specific piece of functionality inherent to
5//! the Agent, it likely exists (or belongs) here.
6
7#![deny(missing_docs)]
8#![deny(warnings)]
9
10pub mod ipc;
11
12pub mod platform;