11 lines
232 B
Rust
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::*;
|