Remove pub on some command internals (#14636)

Stumbled over unnecessary `pub` `fn action` and `struct Arguments` when
reworking `into bits` in #14634

Stuff like this should be local until proven otherwise and then named
approrpiately.
This commit is contained in:
Stefan Holderbach
2024-12-19 19:42:18 +01:00
committed by GitHub
parent f2e8c391a2
commit dc0ac8e917
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ use nu_cmd_base::input_handler::{operate, CmdArgument};
use nu_engine::command_prelude::*;
use nu_protocol::Config;
pub struct Arguments {
struct Arguments {
cell_paths: Option<Vec<CellPath>>,
config: Arc<Config>,
}