14 lines
406 B
Rust
14 lines
406 B
Rust
//! WebAssembly (WASM) module support for sgl-model-gateway
|
|
//!
|
|
//! This module provides WASM component execution capabilities using the WebAssembly Component Model.
|
|
//! It supports middleware execution at various attach points (OnRequest, OnResponse) with async support.
|
|
|
|
pub mod config;
|
|
pub mod errors;
|
|
pub mod module;
|
|
pub mod module_manager;
|
|
pub mod route;
|
|
pub mod runtime;
|
|
pub mod spec;
|
|
pub mod types;
|