1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Polymesh CLI binary. #![feature(box_syntax)] #![warn(missing_docs)] #![warn(unused_extern_crates)] mod chain_spec; #[macro_use] mod service; mod cli; mod command; fn main() -> command::Result<()> { command::run() }