qos_core 0.6.0

Core components and logic for QuorumOS applications
Documentation
1
2
3
4
5
6
7
8
//! QOS Core binary entry point.

use qos_core::cli::CLI;

#[tokio::main]
async fn main() {
	CLI::execute().await;
}