Change usage

This commit is contained in:
2026-01-11 12:01:50 +03:00
parent 4726cbf7ec
commit 8d27a4ba61
2 changed files with 8 additions and 4 deletions
+5 -3
View File
@@ -14,9 +14,11 @@ wcm network show
# peers # peers
wcm peer add temp wcm peer add temp
wcm peer add server to network test --pass-thru=0.0.0.0/0 --port=59 wcm peer add server --to-network test --pass-thru=0.0.0.0/0 --port=59
wcm peer add alice to network test --address=10.0.0.150 wcm peer add alice --to-network test --address=10.0.0.150
wcm peer add bob to network test --with-pk=wireguardprivatekey= wcm peer add bob --with-pk=wireguardprivatekey=
wcm connect bob test
wcm disconnect bob all
wcm peer remove alice from network test wcm peer remove alice from network test
wcm peer delete alice wcm peer delete alice
wcm peer show wcm peer show
+3 -1
View File
@@ -5,7 +5,9 @@ version = "2024.12.0a"
license = {file = "LICENSE"} license = {file = "LICENSE"}
readme = "README.md" readme = "README.md"
requires-python = ">=3.8" requires-python = ">=3.8"
dependencies = ["click>=8.1"] dependencies = [
"click>=8.1",
]
authors = [ authors = [
{name = "Fedor Lyanguzov"}, {name = "Fedor Lyanguzov"},
] ]