8 lines
117 B
Python
8 lines
117 B
Python
from abc import ABC
|
|
|
|
|
|
class IRawConnection(ABC):
|
|
"""
|
|
A Raw Connection provides a Reader and a Writer
|
|
"""
|