pub trait OsExecute {
    type Err: ToString;

    fn os_execute(
        &self,
        deps: Deps<'_>,
        msgs: Vec<CosmosMsg>
    ) -> Result<Response, Self::Err>; }
Expand description

execute an operation on the os

Required Associated Types

Required Methods

Implementors