diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-21 19:19:40 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-21 19:19:40 +0200 |
commit | c6293d8e328bb96c368921fe922092d4f27f0bc9 (patch) | |
tree | 1c374345ba911b79167ae70a654dd0618efa9446 /planetwars-cli/src/lib.rs | |
parent | 31f8271db6735a1c7abea4d93bb3b8d7a3ce4628 (diff) | |
download | planetwars.dev-c6293d8e328bb96c368921fe922092d4f27f0bc9.tar.xz planetwars.dev-c6293d8e328bb96c368921fe922092d4f27f0bc9.zip |
delete old planetwars-cli code
Diffstat (limited to 'planetwars-cli/src/lib.rs')
-rw-r--r-- | planetwars-cli/src/lib.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/planetwars-cli/src/lib.rs b/planetwars-cli/src/lib.rs deleted file mode 100644 index f67b67f..0000000 --- a/planetwars-cli/src/lib.rs +++ /dev/null @@ -1,11 +0,0 @@ -mod commands; -mod web; -mod workspace; - -pub async fn run() { - let res = commands::Cli::run().await; - if let Err(err) = res { - eprintln!("{}", err); - std::process::exit(1); - } -} |