base for testing new pallets

This commit is contained in:
Ozgun Ozerk
2023-11-09 16:03:00 +03:00
parent 0dd9bbcbe7
commit 897845d6f6
26 changed files with 17870 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
//! Substrate Parachain Node Template CLI
#![warn(missing_docs)]
mod chain_spec;
#[macro_use]
mod service;
mod cli;
mod command;
mod rpc;
fn main() -> sc_cli::Result<()> {
command::run()
}