Update template triggered by workflow_dispatch

This commit is contained in:
Template Bot
2024-04-13 11:34:11 +00:00
parent 39712f5248
commit 2273aabb2e
28 changed files with 13038 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
//! Substrate Node Template CLI library.
#![warn(missing_docs)]
mod benchmarking;
mod chain_spec;
mod cli;
mod command;
mod rpc;
mod service;
fn main() -> sc_cli::Result<()> {
command::run()
}