mechtron 0.3.13

Part of http://thecosmicinitiative.io This package--MECHTRON--provides an API and framework that allows a Wasm component to send and receive messages from other Wasm components.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate as mechtron;
use crate::err::MechErr;

#[derive(cosmic_macros_primitive::MechErr)]
pub struct MyErr {
    pub message: String,
}

#[test]
pub fn test() {}