rename to planetwars-cli
This commit is contained in:
parent
b1e9490f55
commit
c04d4a449b
14 changed files with 8 additions and 8 deletions
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
members = [
|
members = [
|
||||||
"planetwars-rules",
|
"planetwars-rules",
|
||||||
"planetwars-localdev",
|
"planetwars-cli",
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "planetwars-localdev"
|
name = "planetwars-cli"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
6
planetwars-cli/src/bin/pwcli.rs
Normal file
6
planetwars-cli/src/bin/pwcli.rs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
use planetwars_cli;
|
||||||
|
|
||||||
|
#[tokio::main]
|
||||||
|
async fn main() {
|
||||||
|
planetwars_cli::run().await
|
||||||
|
}
|
|
@ -1,6 +0,0 @@
|
||||||
use planetwars_localdev;
|
|
||||||
|
|
||||||
#[tokio::main]
|
|
||||||
async fn main() {
|
|
||||||
planetwars_localdev::run().await
|
|
||||||
}
|
|
Loading…
Reference in a new issue