cw0/
event.rs

1use cosmwasm_std::Response;
2
3/// This defines a set of attributes which should be added to `Response`.
4pub trait Event {
5    /// Append attributes to response
6    fn add_attributes(&self, response: &mut Response);
7}