wasmrun 0.19.0

A WebAssembly Runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// TODO: Implement Go runtime with TinyGo WASM

#[allow(dead_code)] // TODO: Will be used when Go runtime is fully implemented
pub struct GoRuntime;

#[allow(dead_code)]
impl GoRuntime {
    pub fn new() -> Self {
        Self
    }
}

impl Default for GoRuntime {
    fn default() -> Self {
        Self::new()
    }
}