1//! Host provider implementations. 2 3mod boxed; 4pub use self::boxed::BoxedHostProvider; 5 6mod fixed; 7pub use self::fixed::FixedHostProvider; 8 9mod remote_agent; 10pub use self::remote_agent::RemoteAgentHostProvider;