8 lines
196 B
Python
8 lines
196 B
Python
"""
|
|
Named tuples representing the network peers
|
|
"""
|
|
import collections
|
|
|
|
Peer = collections.namedtuple('Peer', ['host', 'port'])
|
|
Node = collections.namedtuple('Node', ['services', 'host', 'port'])
|