green_copper_runtime/modules/com/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
/*

revisit this when figured out how to add custom client to fetch api like Deno does

#[cfg(any(feature = "all", feature = "com", feature = "http"))]
pub mod http;

pub(crate) fn init<B: JsRuntimeBuilder>(builder: &mut B) {
    #[cfg(any(feature = "all", feature = "com", feature = "http"))]
    http::init(builder);
}

 */