#![allow(unexpected_cfgs)]
pub mod auth;
pub mod config;
pub mod content_parser;
pub mod descriptor;
pub mod pagination;
pub mod provider;
pub mod response;
pub mod template_engine;
pub use config::HttpBootstrapConfig;
pub use provider::HttpBootstrapProvider;
#[cfg(feature = "dynamic-plugin")]
drasi_plugin_sdk::export_plugin!(
plugin_id = "http-bootstrap",
core_version = env!("CARGO_PKG_VERSION"),
lib_version = env!("CARGO_PKG_VERSION"),
plugin_version = env!("CARGO_PKG_VERSION"),
source_descriptors = [],
reaction_descriptors = [],
bootstrap_descriptors = [descriptor::HttpBootstrapDescriptor],
);