rainmaker-components 0.1.0

Component abstractions for rainmaker
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub(crate) mod base;
pub use base::*;

mod http_esp;
mod http_linux;

#[cfg(target_os = "espidf")]
pub type HttpServer = base::HttpServer<esp_idf_svc::http::server::EspHttpServer<'static>>;

#[cfg(target_os = "linux")]
pub type HttpServer = base::HttpServer<http_linux::HttpServerLinux>;