Trait exocore_apps_sdk::app::App[][src]

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