node-template 2.0.0

A new fabric-based Tetcore node, ready for hacking.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Tetcore Node Template CLI library.
#![warn(missing_docs)]

mod chain_spec;
#[macro_use]
mod service;
mod cli;
mod command;
mod rpc;

fn main() -> tc_cli::Result<()> {
	command::run()
}