1 2 3 4 5 6 7 8 9 10 11
use crate::error::WasmError; pub struct LogicContext { } impl LogicContext { pub fn new() -> Result<Self, WasmError> { Ok(Self { }) } }