provider_agent/lib.rs
1//! Library surface of the Use Pod provider agent.
2//!
3//! The binary (`src/main.rs`) is a thin wrapper around these modules so that
4//! integration tests can exercise config parsing, identity, and protocol
5//! plumbing directly.
6
7pub mod backend;
8pub mod config;
9pub mod discovery;
10pub mod heartbeat;
11pub mod identity;
12pub mod job_executor;
13pub mod setup;
14pub mod ws_client;