cw_skeleton_pkg/msgs/
instantiate_msg.rs

1use cosmwasm_schema::cw_serde;
2
3/// The instantiate message has an optional owner
4#[cw_serde]
5pub struct InstantiateMsg {
6    /// By default will assign the sender as the owner
7    /// You may also make another address owner with this.
8    pub owner: Option<String>,
9}