structio/structio/io/socket.py

14 lines
246 B
Python

import structio
from structio.abc import AsyncResource
from structio.core.syscalls import check_cancelled
from functools import wraps
import socket as _socket
@wraps(_socket.socket)
def socket(*args, **kwargs):
return None # TODO
# TODO