smg-wasm 1.1.0

WebAssembly runtime and module management for Shepherd Model Gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! WebAssembly Interface Bindings for Storage Hooks.
//!
//! Invokes `wasmtime::component::bindgen!` at compile time to generate
//! host-side bindings from `interface/storage/storage-hooks.wit`.

wasmtime::component::bindgen!({
    path: "src/interface/storage",
    world: "storage-hook",
    imports: { default: async | trappable },
    exports: { default: async },
});