Onionr/onionr/onionrtypes/__init__.py

8 lines
221 B
Python
Raw Normal View History

from typing import NewType
UserID = NewType('UserID', str)
UserIDSecretKey = NewType('UserIDSecretKey', str)
2019-11-04 10:52:38 +00:00
DeterministicKeyPassphrase = NewType('DeterministicKeyPassphrase', str)
BlockHash = NewType('BlockHash', str)