Trait exocore_apps_sdk::app::App

source ·
pub trait App: Send {
    // Required method
    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§

source

fn start(&self, client: &Exocore) -> Result<(), AppError>

Implementors§