1 pub mod http; 2 pub mod nn; 3 pub mod preview1; 4 pub mod sockets; 5 6 wit_bindgen::generate!("test-command" in "../wasi/wit"); 7 8 pub mod proxy { 9 wit_bindgen::generate!({ 10 path: "../wasi-http/wit", 11 world: "wasi:http/proxy", 12 default_bindings_module: "test_programs::proxy", 13 pub_export_macro: true, 14 with: { 15 "wasi:http/types@0.2.0": crate::wasi::http::types, 16 "wasi:http/outgoing-handler@0.2.0": crate::wasi::http::outgoing_handler, 17 }, 18 }); 19 } 20