Files
wasmtime/src/hostcalls/mod.rs
2019-05-18 15:43:58 -07:00

11 lines
232 B
Rust

//! Hostcalls that implement
//! [WASI](https://github.com/CraneStation/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
mod fs;
mod fs_helpers;
mod misc;
mod sock;
pub use self::fs::*;
pub use self::misc::*;
pub use self::sock::*;