diff options
| -rw-r--r-- | LICENSE-APACHE (renamed from LICENSE-APACHE-2.0) | 0 | ||||
| -rw-r--r-- | src/bin/jv.rs | 23 | ||||
| -rw-r--r-- | src/bin/jvv.rs | 23 |
3 files changed, 46 insertions, 0 deletions
diff --git a/LICENSE-APACHE-2.0 b/LICENSE-APACHE index 75b70c0..75b70c0 100644 --- a/LICENSE-APACHE-2.0 +++ b/LICENSE-APACHE diff --git a/src/bin/jv.rs b/src/bin/jv.rs index d1f66a6..c3dc4ca 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -1,3 +1,26 @@ +// +// +// ████████ ████████ +// ██▒▒▒▒▒▒▒▒██ ██▒▒▒▒▒▒▒▒██ +// ██ ▒▒██ ██▒▒ ██ █████ ██ ██ ██████ █████ +// ██ ▒▒████████▒▒ ██ ▒▒▒██ ██ ██ ██████ ██████ +// ██ ▒▒▒▒▒▒▒▒ ██ ██ ██ ██ ███▒▒▒█ █▒▒▒▒█ +// ██ ██ ██ ██ ██ ███ ▒ ████ ▒ +// ██ ██ ██ ██ ██ ███ ▒████ +// ██ ████ ████ ██ ██ ▒██ ██▒ ███ ▒▒▒██ +// ██ ████ ████ ██ █ ██ ██ ██ ███ █ ██ ██ +// ██ ████ ████ ██ █ ██ ▒████▒ ▒██████ ██████ +// ██ ▒▒▒▒ ▒▒▒▒ ██ ▒████ ▒██▒ ██████ ▒████▒ +// ██ ██ ▒▒▒▒ ▒▒ ▒▒▒▒▒▒ ▒▒▒▒ +// ██ ██████████ ██ +// ██ ██ ██ +// ████████████████████████████████ +// ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ +// +// The current module `jv.rs` is the legacy implementation, with only necessary fixes to maintain usability. +// The new implementation is located in `jvn.rs`, please refer to it. +// + use cli_utils::input::input_with_editor; use colored::Colorize; use just_enough_vcs::{ diff --git a/src/bin/jvv.rs b/src/bin/jvv.rs index b602e9b..335e374 100644 --- a/src/bin/jvv.rs +++ b/src/bin/jvv.rs @@ -1,3 +1,26 @@ +// +// +// ████████ ████████ +// ██▒▒▒▒▒▒▒▒██ ██▒▒▒▒▒▒▒▒██ +// ██ ▒▒██ ██▒▒ ██ █████ ██ ██ ██████ █████ +// ██ ▒▒████████▒▒ ██ ▒▒▒██ ██ ██ ██████ ██████ +// ██ ▒▒▒▒▒▒▒▒ ██ ██ ██ ██ ███▒▒▒█ █▒▒▒▒█ +// ██ ██ ██ ██ ██ ███ ▒ ████ ▒ +// ██ ██ ██ ██ ██ ███ ▒████ +// ██ ████ ████ ██ ██ ▒██ ██▒ ███ ▒▒▒██ +// ██ ████ ████ ██ █ ██ ██ ██ ███ █ ██ ██ +// ██ ████ ████ ██ █ ██ ▒████▒ ▒██████ ██████ +// ██ ▒▒▒▒ ▒▒▒▒ ██ ▒████ ▒██▒ ██████ ▒████▒ +// ██ ██ ▒▒▒▒ ▒▒ ▒▒▒▒▒▒ ▒▒▒▒ +// ██ ██████████ ██ +// ██ ██ ██ +// ████████████████████████████████ +// ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ +// +// The current module `jvv.rs` is the legacy implementation, with only necessary fixes to maintain usability. +// The new implementation is located in `jvn.rs`, please refer to it. +// + use clap::{Parser, Subcommand}; use cli_utils::{ display::{md, size_str}, |
