py-libp2p/libp2p/security/typing.py

4 lines
97 B
Python
Raw Normal View History

2019-08-04 00:18:30 +08:00
from typing import Dict, NewType
2019-08-01 19:12:11 +08:00
2019-08-02 14:12:59 +08:00
TSecurityDetails = NewType("TSecurityDetails", Dict[str, str])