28f6de37ee
* ignore kad * fix swarm, and minor * fix init and swarm * ignore pb * enable mypy * fix basic host * fix tcp * fix mplex * add typing for pb * skip format pyi * [mypy] no need to ignore pb now * add typing to chat
5 lines
154 B
Python
5 lines
154 B
Python
from asyncio import StreamReader, StreamWriter
|
|
from typing import Awaitable, Callable
|
|
|
|
THandler = Callable[[StreamReader, StreamWriter], Awaitable[None]]
|