1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use self::substrate_add::add_pallet;
pub use self::substrate_build::build;
pub use self::substrate_deploy::deploy;
pub use self::substrate_run::run;
pub use self::substrate_frontend::frontend;
pub use self::substrate_new::new_contract;
pub use self::substrate_new::new_chain;
pub use self::substrate_test::test;

pub mod substrate_add;
pub mod substrate_build;
pub mod substrate_deploy;
pub mod substrate_run;
pub mod substrate_frontend;
pub mod substrate_new;
pub mod substrate_test;