wasmdev_server 0.1.7

wasmdev server implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


#[cfg(not(target_family = "wasm"))]
pub mod http;

#[cfg(not(target_family = "wasm"))]
pub mod utils;

#[cfg(not(target_family = "wasm"))]
pub use http::{Server, ServerConfig};

#[cfg(not(target_family = "wasm"))]
pub mod prelude {
    pub use crate::http::{EndpointBuilderNoResponse, EndpointBuilderHasResponse};
}

#[cfg(not(target_family = "wasm"))]
pub use wasmdev_core as core;