fix connection

This commit is contained in:
zixuanzh
2018-10-31 23:08:47 +01:00
parent ad7a449f6e
commit 2315388589
3 changed files with 10 additions and 38 deletions

View File

@ -1,13 +1,8 @@
from abc import ABC, abstractmethod
import asyncio
class IRawConnection(ABC):
@abstractmethod
def __init__(self, ip, port):
pass
@abstractmethod
async def open_connection(self):
pass