This repository has been archived on 2025-01-29. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-01-29/src/network/node.py

8 lines
230 B
Python
Raw Normal View History

2019-09-13 09:33:40 +02:00
"""
Named tuples representing the network peers
2019-09-13 09:33:40 +02:00
"""
2024-05-26 02:50:42 +02:00
from six.moves import collections_abc as collections
2017-04-16 18:27:15 +02:00
Peer = collections.namedtuple('Peer', ['host', 'port'])
Node = collections.namedtuple('Node', ['services', 'host', 'port'])