8 lines
163 B
Python
8 lines
163 B
Python
from libp2p.io.abc import ReadWriteCloser
|
|
|
|
|
|
class IRawConnection(ReadWriteCloser):
|
|
"""A Raw Connection provides a Reader and a Writer."""
|
|
|
|
initiator: bool
|