diff options
author | Alex Auvolat <alex@adnab.me> | 2018-10-11 15:11:52 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-10-11 15:11:52 +0200 |
commit | 1646bc57eae9880fd408d23ca692364dc6fd6442 (patch) | |
tree | 0f65d47498f33772152b20ee082d34e218f16df4 /shard/lib/cli | |
parent | eb8c949551ffb8b3600357d7ff2bebe750af96e5 (diff) | |
download | shard-1646bc57eae9880fd408d23ca692364dc6fd6442.tar.gz shard-1646bc57eae9880fd408d23ca692364dc6fd6442.zip |
Move somme functionnality to SNet.Manager
Diffstat (limited to 'shard/lib/cli')
-rw-r--r-- | shard/lib/cli/cli.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shard/lib/cli/cli.ex b/shard/lib/cli/cli.ex index 5f3dc7f..f7e8525 100644 --- a/shard/lib/cli/cli.ex +++ b/shard/lib/cli/cli.ex @@ -72,7 +72,7 @@ defmodule SCLI do defp handle_command(state, ["connect", ipstr, portstr]) do {:ok, ip} = :inet.parse_address (to_charlist ipstr) {port, _} = Integer.parse portstr - Shard.Manager.add_peer({:inet, ip, port}) + SNet.Manager.add_peer({:inet, ip, port}) state end |