Remove tui stub

This should just be added later when (if) it is ever implemented
This commit is contained in:
2025-11-26 02:07:44 +09:00
parent 1571f6e2c7
commit c9815fe7de
4 changed files with 4 additions and 279 deletions

View File

@@ -30,9 +30,6 @@ mod server;
mod client;
mod core;
#[cfg(feature = "tui")]
mod tui;
/// Database administration tool for non-admin users to manage their own MySQL databases and users.
///
/// This tool allows you to manage users and databases in MySQL.
@@ -67,11 +64,6 @@ struct Args {
#[command(flatten)]
verbose: Verbosity,
/// Run in TUI mode.
#[cfg(feature = "tui")]
#[arg(short, long, alias = "tui", global = true)]
interactive: bool,
}
#[derive(Parser, Debug, Clone)]