8 lines
136 B
Python
8 lines
136 B
Python
"""
|
|
src/network/node.py
|
|
===================
|
|
"""
|
|
import collections
|
|
|
|
Node = collections.namedtuple('Node', ['services', 'host', 'port'])
|