Library/
Library.rs

1#![allow(non_snake_case)]
2#![allow(clippy::upper_case_acronyms)]
3
4mod Fn;
5mod Struct;
6
7/// The main entry point of the application.
8///
9/// This function initializes the command structure and invokes the main
10/// execution future, which handles argument parsing, path finding, and command
11/// execution.
12#[tokio::main]
13#[allow(dead_code)]
14async fn main() {
15	// The `Fn` field on the returned struct holds the main async closure.
16	(Struct::Binary::Command::Struct::Fn().Fn)().await
17}