Skip to content

Commit

Permalink
Add todo comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Mar 20, 2024
1 parent 8ed1486 commit 642a320
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cmd/cp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ use lighthouse_client::protocol::Value;

use crate::{context::Context, path::VirtualPathBuf};

// TODO: Add support for copying (potentially multiple) src resources into a directory
// TODO: Add support for copying directories (with -r flag)

#[derive(Parser)]
#[command(bin_name = "cp")]
struct Args {
Expand Down
3 changes: 3 additions & 0 deletions src/cmd/mv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ use lighthouse_client::protocol::Value;

use crate::{context::Context, path::VirtualPathBuf};

// TODO: Add support for moving (potentially multiple) src resources into a directory
// TODO: Add support for moving directories

#[derive(Parser)]
#[command(bin_name = "mv")]
struct Args {
Expand Down

0 comments on commit 642a320

Please sign in to comment.