useschemars::JsonSchema;usestd::fmt;usecosmwasm_schema::cw_serde;usecosmwasm_std::{CosmosMsg, Empty};#[cw_serde]pubenumCw1ExecuteMsg<T = Empty>
where
T: Clone + fmt::Debug + PartialEq + JsonSchema,
{/// Execute requests the contract to re-dispatch all these messages with the
/// contract's address as sender. Every implementation has it's own logic to
/// determine in
Execute { msgs:Vec<CosmosMsg<T>>},}