diff --git a/README.md b/README.md index ca67a9b..cc02698 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,11 @@ wcm network show # peers wcm peer add temp -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 bob to network test --with-pk=wireguardprivatekey= +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 bob --with-pk=wireguardprivatekey= +wcm connect bob test +wcm disconnect bob all wcm peer remove alice from network test wcm peer delete alice wcm peer show diff --git a/pyproject.toml b/pyproject.toml index 83c963b..6e61e94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,9 @@ version = "2024.12.0a" license = {file = "LICENSE"} readme = "README.md" requires-python = ">=3.8" -dependencies = ["click>=8.1"] +dependencies = [ + "click>=8.1", +] authors = [ {name = "Fedor Lyanguzov"}, ]