pub trait App: Send {
    fn start(&self, client: &Exocore) -> Result<(), AppError>;
}
Expand description

Trait implemented by an application WASM module. The struct implementing this trait should have the #[exocore_app] macro attribute.

Required Methods

Implementors