1use cosmwasm_std::Addr; 2use cw_storage_plus::Item; 3 4pub const ROOT: Item<Addr> = Item::new("root"); 5pub const DAO: Item<Addr> = Item::new("dao");