Create a new `Cd` command.
(dir: PathBuf)
| 38 | impl Cd { |
| 39 | /// Create a new `Cd` command. |
| 40 | pub fn new(dir: PathBuf) -> Self { |
| 41 | Self { dir } |
| 42 | } |
| 43 | |
| 44 | /// Run the `cd` command. |
| 45 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected