1
2
3
4
5
6
7
//! This is a collection of structs shared across the multisol crates.

mod cli;
mod contract;

pub use cli::Cli;
pub use contract::Contract;