mirror of
https://github.com/nushell/nushell.git
synced 2025-08-11 05:44:22 +02:00
Path migration 1 (#13309)
# Description Part 1 of replacing `std::path` types with `nu_path` types added in #13115.
This commit is contained in:
@ -1,13 +1,11 @@
|
||||
use super::PathSubcommandArguments;
|
||||
use nu_engine::command_prelude::*;
|
||||
use nu_path::AbsolutePathBuf;
|
||||
use nu_protocol::engine::StateWorkingSet;
|
||||
use std::{
|
||||
io,
|
||||
path::{Path, PathBuf},
|
||||
};
|
||||
use std::{io, path::Path};
|
||||
|
||||
struct Arguments {
|
||||
pwd: PathBuf,
|
||||
pwd: AbsolutePathBuf,
|
||||
}
|
||||
|
||||
impl PathSubcommandArguments for Arguments {}
|
||||
|
Reference in New Issue
Block a user