blob: 99df99dd8a1e71a8350cda06e952c0b4a5b6d53f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
defmodule ShardWeb.PageView do
use ShardWeb, :view
def conn_list do
Shard.Manager.list_connections
end
def peer_id_to_str(id) do
id
|> binary_part(0, 8)
|> Base.encode16
|> String.downcase
end
end
|