wkrs 0.0.1

wasm worker works
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2022 VMware, Inc.
// SPDX-License-Identifier: Apache-2.0

mod cache;
mod content;

pub use cache::Cache;
pub use content::Content;
pub mod io;

pub use worker::worker;
// Re-export http
pub use http;

// Bindings!
pub mod bindings;