py-libp2p/libp2p/security/typing.py

4 lines
111 B
Python
Raw Normal View History

2019-08-03 13:36:19 +08:00
from typing import Any, Dict, NewType, TypeVar
2019-08-01 19:12:11 +08:00
2019-08-02 14:12:59 +08:00
TSecurityDetails = NewType("TSecurityDetails", Dict[str, str])