py-libp2p/libp2p/network/connection/raw_connection_interface.py
2019-01-09 21:38:56 +03:00

10 lines
159 B
Python

from abc import ABC
# pylint: disable=too-few-public-methods
class IRawConnection(ABC):
"""
A Raw Connection provides a Reader and a Writer
"""