py-libp2p/connection/raw_connection_interface.py

8 lines
138 B
Python
Raw Normal View History

2018-11-01 05:39:47 +08:00
from abc import ABC, abstractmethod
class IRawConnection(ABC):
@abstractmethod
async def open_connection(self):
pass
2018-11-01 06:08:47 +08:00