Skip to main content

kernel/
cli.rs

1//! # Command Line Interface (CLI) Subcrate
2//!
3//! This subcrate provides the command-line parsing, action execution, and interactive 
4//! console logic for the application. It translates raw user input and network commands 
5//! into structured [`CliAction`](common::cli_actions::CliAction) representations and handles their execution, logging, 
6//! and error responses.
7mod cli_executing;
8mod command_parsing;
9
10pub(crate) use cli_executing::execute_implicit_cli_action;
11
12pub(crate) use command_parsing::run_command;