adjusting listvfs command

This commit is contained in:
pedrocarlo
2025-03-30 01:52:16 -03:00
parent 82db51b94f
commit b7bbafd691
3 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
use crate::{
commands::{args::EchoMode, import::ImportFile, Command, CommandParser},
helper::LimboHelper,
input::{get_io, get_writer, DbLocation, Io, OutputMode, Settings},
input::{get_io, get_writer, DbLocation, OutputMode, Settings},
opcodes_dictionary::OPCODE_DESCRIPTIONS,
};
use comfy_table::{Attribute, Cell, CellAlignment, Color, ContentArrangement, Row, Table};

View File

@@ -73,7 +73,7 @@ pub enum Command {
/// Dump the current database as a list of SQL statements
Dump,
/// List vfs modules available
#[command(name = "listvfs", subcommand_value_name = ".dump")]
#[command(name = "listvfs", subcommand_value_name = ".listvfs")]
ListVfs,
}